diff --git a/MP.Land/Pages/About.razor b/MP.Land/Pages/About.razor index 3d26a90c..b0593084 100644 --- a/MP.Land/Pages/About.razor +++ b/MP.Land/Pages/About.razor @@ -4,9 +4,7 @@ @inject MessageService AppMService
-
-
-
+

@Titolo

@@ -14,7 +12,7 @@
- +
diff --git a/MP.Land/Pages/Contacts.razor b/MP.Land/Pages/Contacts.razor new file mode 100644 index 00000000..7a811d88 --- /dev/null +++ b/MP.Land/Pages/Contacts.razor @@ -0,0 +1,86 @@ +@page "/Contacts" +@using MP.Land.Data + +@inject MessageService AppMService + +
+
+
+
+
+
+
+

@Titolo

+
+ +
+
+
+
+
+ +
+
+
+
+

@Messaggio

+ +
+
+

Sede Operativa

+
+ EgalWare s.r.l.
+ via Nazionale, 93
+ 24068 Seriate - BG
+ P: + 035.290178
+ P: + 035.460560 +
+
+
+

Sede Legale

+
+ EgalWare s.r.l.
+ via Nazionale, 93
+ 24068 Seriate - BG
+
+ VAT:03985390164 +
+
+
+

Supporto

+
+ Web:
+ Accedi al supporto dal nostro sito web
+
+ Email:
+ Scrivi un email a info at egalware.com +
+
+
+
+
+
+
+ +@code { + + protected string Titolo = ""; + protected string Messaggio = ""; + + protected override void OnInitialized() + { + Titolo = "Mapo MES"; + Messaggio = "I nostri contattatti e siti di supporto"; + AppMService.ShowSearch = false; + AppMService.PageName = "Contacts"; + AppMService.PageIcon = "fas fa-envelope pr-2"; + } +} \ No newline at end of file