diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
new file mode 100644
index 0000000..aa23dfa
--- /dev/null
+++ b/src/app/about/page.tsx
@@ -0,0 +1,89 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
+import SplitAbout from "@/components/sections/about/SplitAbout";
+import FooterCard from "@/components/sections/footer/FooterCard";
+import { Sparkles, Music, Lightbulb, Instagram, Facebook, Twitter } from "lucide-react";
+
+export default function AboutPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index fe0ca0d..41b7072 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,1422 +1,18 @@
import type { Metadata } from "next";
-import { Halant } from "next/font/google";
-import { Inter } from "next/font/google";
-import { Lato } from "next/font/google";
-import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-
-const halant = Halant({
- variable: "--font-halant", subsets: ["latin"],
- weight: ["300", "400", "500", "600", "700"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
-
-const lato = Lato({
- variable: "--font-lato", subsets: ["latin"],
- weight: ["100", "300", "400", "700", "900"],
-});
+import "./styles/variables.css";
+import "./styles/base.css";
export const metadata: Metadata = {
- title: "Transumare Fest 2026 | Musica in Movimento - Roseto Abruzzi", description: "Festival musicale innovativo ad agosto 2026. Artisti internazionali, musica elettronica e contemporanea sul mare Adriatico a Roseto degli Abruzzi.", keywords: "festival musica, transumare fest, roseto abruzzi, musica elettronica, estate 2026, artisti internazionali", robots: {
- index: true,
- follow: true,
- },
- openGraph: {
- title: "Transumare Fest 2026 | Musica in Movimento", description: "Scopri il festival musicale più innovativo dell'estate. Dal 19-22 Agosto a Roseto degli Abruzzi con artisti di fama internazionale.", url: "https://www.transumarefest.com", siteName: "Transumare Fest", type: "website", images: [
- {
- url: "http://img.b2bpic.net/free-photo/portrait-stylish-young-girl-posing_23-2148624908.jpg", alt: "Transumare Fest Festival Stage"},
- ],
- },
- twitter: {
- card: "summary_large_image", title: "Transumare Fest 2026 | Musica in Movimento", description: "Festival musicale innovativo: musica, arte e cultura sul mare Adriatico. Agosto 2026 a Roseto Abruzzi.", images: ["http://img.b2bpic.net/free-photo/portrait-stylish-young-girl-posing_23-2148624908.jpg"],
- },
-};
+ title: "Transumare Fest", description: "A festival musicale a Roseto degli Abruzzi con artisti di fama internazionale."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-
-
-
- {children}
-
-