From d578f38e7e1945c92b5cbcd8110384aed149436e Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 16:10:01 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1419 +------------------------------------------- 1 file changed, 7 insertions(+), 1412 deletions(-) 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} - -