diff --git a/GPW.CORE.SMART/Pages/About.razor b/GPW.CORE.SMART/Pages/About.razor
new file mode 100644
index 0000000..2994681
--- /dev/null
+++ b/GPW.CORE.SMART/Pages/About.razor
@@ -0,0 +1,62 @@
+@page "/About"
+
+
+
+
+
+
+
+
+
Headquarters
+
+ EgalWare s.r.l.
+ via Nazionale, 93
+ 24068 Seriate - BG
+
+ +39.035.290178
+
+ +39.035.460560
+
+
+
+

+
+
+
+
@Messaggio
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/GPW.CORE.SMART/Pages/About.razor.cs b/GPW.CORE.SMART/Pages/About.razor.cs
new file mode 100644
index 0000000..9e09e6d
--- /dev/null
+++ b/GPW.CORE.SMART/Pages/About.razor.cs
@@ -0,0 +1,57 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using Microsoft.AspNetCore.Components;
+using System.Net.Http;
+using Microsoft.AspNetCore.Authorization;
+using Microsoft.AspNetCore.Components.Authorization;
+using Microsoft.AspNetCore.Components.Forms;
+using Microsoft.AspNetCore.Components.Routing;
+using Microsoft.AspNetCore.Components.Web;
+using Microsoft.AspNetCore.Components.Web.Virtualization;
+using Microsoft.JSInterop;
+using GPW.CORE.Comp;
+using GPW.CORE.Data.DbModels;
+using GPW.CORE.Smart;
+using GPW.CORE.Smart.Components;
+using GPW.CORE.Smart.Shared;
+
+namespace GPW.CORE.Smart.Pages
+{
+ public partial class About : IDisposable
+ {
+ #region Public Methods
+
+ public void Dispose()
+ {
+ GC.Collect();
+ }
+
+ #endregion Public Methods
+
+ #region Protected Fields
+
+ protected string Messaggio = "";
+ protected string Titolo = "";
+
+ #endregion Protected Fields
+
+ #region Protected Methods
+
+ protected override void OnInitialized()
+ {
+ Titolo = Configuration.GetValue("Application:Name");
+ Messaggio = Configuration.GetValue("Application:ContactText");
+ }
+
+ #endregion Protected Methods
+
+ #region Private Properties
+
+ [Inject]
+ private IConfiguration Configuration { get; set; } = null!;
+
+ #endregion Private Properties
+ }
+}
\ No newline at end of file
diff --git a/GPW.CORE.SMART/wwwroot/images/LogoEgw.png b/GPW.CORE.SMART/wwwroot/images/LogoEgw.png
new file mode 100644
index 0000000..8d5a7c1
Binary files /dev/null and b/GPW.CORE.SMART/wwwroot/images/LogoEgw.png differ
diff --git a/GPW.CORE.SMART/wwwroot/images/LogoEgwWhite.png b/GPW.CORE.SMART/wwwroot/images/LogoEgwWhite.png
new file mode 100644
index 0000000..f65c23c
Binary files /dev/null and b/GPW.CORE.SMART/wwwroot/images/LogoEgwWhite.png differ