diff --git a/src/app/gladys/routes/page.tsx b/src/app/gladys/routes/page.tsx
index 2480c7a..903dad5 100644
--- a/src/app/gladys/routes/page.tsx
+++ b/src/app/gladys/routes/page.tsx
@@ -3,6 +3,7 @@ import SplitText from "@/components/reactbits/SplitText";
import AnimatedContent from "@/components/reactbits/AnimatedContent";
import DotGrid from "@/components/reactbits/DotGrid";
import ItinerarioMapClient from "@/components/ui/gladys/routes/ItinerarioMapWrapper";
+import Footer from "@/components/layouts/Footer";
export default function GladysPage() {
return (
@@ -38,13 +39,14 @@ export default function GladysPage() {
/>
-
+
diff --git a/src/app/gladys/timeline/page.tsx b/src/app/gladys/timeline/page.tsx
index 880870d..2479ce9 100644
--- a/src/app/gladys/timeline/page.tsx
+++ b/src/app/gladys/timeline/page.tsx
@@ -102,192 +102,194 @@ export default function TimelinePage() {
-
-
-
+
+
+
+
Timeline Interattiva
-
+
-
- Un viaggio attraverso millenni di storia, dalla preistoria ai
- giorni nostri
-
+
+ Un viaggio attraverso millenni di storia, dalla preistoria ai
+ giorni nostri
+
-
- 🏛️ 5 epoche
- |
- 🗺️ 3 territori
- |
- 📜 45+ eventi verificati
-
-
+
+ 🏛️ 5 epoche
+ |
+ 🗺️ 3 territori
+ |
+ 📜 45+ eventi verificati
+
+
-
-
-
+
+
+
📅 Era storica:
-
-
-
- {(Object.keys(eraLabels) as Era[]).map((era) => (
+
- ))}
-
-
-
-
-
- 🗺️ Territorio:
-
-
-
- {(Object.keys(territoryLabels) as Territory[]).map(
- (territory) => (
+ {(Object.keys(eraLabels) as Era[]).map((era) => (
- )
- )}
+ ))}
+
+
+
+
+
+ 🗺️ Territorio:
+
+
+
+
+ {(Object.keys(territoryLabels) as Territory[]).map(
+ (territory) => (
+
+ )
+ )}
+
-
-
- 📌 Eventi visibili: {filteredEvents.length}
-
-
-
-
-
-
- 📅 Ere storiche
-
-
-
- {[
- ["Preistoria", "#C47A4A"],
- ["Età antica", "#D4A84B"],
- ["Medioevo", "#4A8B9B"],
- ["Età moderna", "#2E7D5E"],
- ["Contemporanea", "#9B6B8A"],
- ].map(([label, color]) => (
-
+
+ 📌 Eventi visibili: {filteredEvents.length}
+
+
+
+
+
+
+ 📅 Ere storiche
+
+
+
+ {[
+ ["Preistoria", "#C47A4A"],
+ ["Età antica", "#D4A84B"],
+ ["Medioevo", "#4A8B9B"],
+ ["Età moderna", "#2E7D5E"],
+ ["Contemporanea", "#9B6B8A"],
+ ].map(([label, color]) => (
+
- {label}
+ {label}
- ))}
+ ))}
+
-
-
-
- 🗺️ Territori
-
-
-
- {[
- ["Provincia di Como", "#E8925C"],
- ["Provincia di Varese", "#6BA85A"],
- ["Canton Ticino", "#5A9BA8"],
- ].map(([label, color]) => (
-
+
+
+ 🗺️ Territori
+
+
+
+ {[
+ ["Provincia di Como", "#E8925C"],
+ ["Provincia di Varese", "#6BA85A"],
+ ["Canton Ticino", "#5A9BA8"],
+ ].map(([label, color]) => (
+
- {label}
+ {label}
- ))}
+ ))}
+
-
-
-
-
- {filteredEvents.map((event) => (
- setSelectedEvent(event)}
- className={`relative my-7 cursor-pointer overflow-visible rounded-2xl border border-white/10 border-l-4 bg-[#1A1A1A] transition duration-200 hover:-translate-y-1 hover:border-[#2E7D5E] hover:bg-[#222222] hover:shadow-2xl ${territoryBorderClasses[event.territory]}`}
- >
+
+
+
+ {filteredEvents.map((event) => (
+ setSelectedEvent(event)}
+ className={`relative my-7 cursor-pointer overflow-visible rounded-2xl border border-white/10 border-l-4 bg-[#1A1A1A] transition duration-200 hover:-translate-y-1 hover:border-[#2E7D5E] hover:bg-[#222222] hover:shadow-2xl ${territoryBorderClasses[event.territory]}`}
+ >
-
+
{eraLabels[event.era]}
-
- {formatYear(event.year)} — {event.title}
-
+
+ {formatYear(event.year)} — {event.title}
+
-
+
{territoryLabels[event.territory]}
-
-
- ))}
-
+
+
+ ))}
+
+
-
+
{selectedEvent && (
diff --git a/src/app/stats/economy/page.tsx b/src/app/stats/economy/page.tsx
index 8c711fa..9b6e7d0 100644
--- a/src/app/stats/economy/page.tsx
+++ b/src/app/stats/economy/page.tsx
@@ -7,6 +7,7 @@ import {ComoEconomyGraph} from "@/components/ui/stats/economy/sub/ComoEconomyGra
import {TicinoEconomyGraph} from "@/components/ui/stats/economy/sub/TicinoEconomyGraph";
import {VareseEconomyGraph} from "@/components/ui/stats/economy/sub/VareseEconomyGraph";
import {LeccoEconomyGraph} from "@/components/ui/stats/economy/sub/LeccoEconomyGraph";
+import Footer from "@/components/layouts/Footer";
export default function GladysPage() {
return (
@@ -42,8 +43,11 @@ export default function GladysPage() {
/>
-
);
@@ -51,7 +55,7 @@ export default function GladysPage() {
function InsubricaCharts() {
return (
-
+
{/* Titolo */}
diff --git a/src/app/stats/urban/page.tsx b/src/app/stats/urban/page.tsx
index 6965eba..beba2d2 100644
--- a/src/app/stats/urban/page.tsx
+++ b/src/app/stats/urban/page.tsx
@@ -7,6 +7,7 @@ import {ComoUrbanGraph} from "@/components/ui/stats/urban/sub/ComoUrbanGraph";
import {LeccoUrbanGraph} from "@/components/ui/stats/urban/sub/LeccoUrbanGraph";
import {TicinoUrbanGraph} from "@/components/ui/stats/urban/sub/TicinoUrbanGraph";
import {VareseUrbanGraph} from "@/components/ui/stats/urban/sub/VareseUrbanGraph";
+import Footer from "@/components/layouts/Footer";
export default function GladysPage() {
return (
@@ -42,8 +43,11 @@ export default function GladysPage() {
/>
-
);
@@ -51,7 +55,7 @@ export default function GladysPage() {
function InsubricaCharts() {
return (
-