From b9e19a8801f41b646b8cc46a9c69ef4cd71b979d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 16:24:08 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 45 +++++++-------------------------------------- 1 file changed, 7 insertions(+), 38 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 68e51d4..3dbcb11 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,50 +1,20 @@ import type { Metadata } from "next"; -import { Manrope } from "next/font/google"; -import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const manrope = Manrope({ - variable: "--font-manrope", subsets: ["latin"], -}); - -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "BarberShop Sadik | Barberia Professionale a Teramo", description: "Scopri BarberShop Sadik, la barberia numero 1 a Teramo. Taglio capelli, cura barba e rasatura tradizionale con barbieri professionisti. Prenota online ora!", keywords: "barbiere Teramo, barber shop Teramo, taglio capelli, cura barba, rasatura, barberia", openGraph: { - title: "BarberShop Sadik - Barberia Professionale a Teramo", description: "Barberia di qualità a Teramo. Professionisti con esperienza. Prenota il tuo appuntamento oggi.", type: "website", siteName: "BarberShop Sadik" - }, - twitter: { - card: "summary_large_image", title: "BarberShop Sadik | Barberia a Teramo", description: "Scopri la migliore barberia a Teramo con team professionista." - }, - robots: { - index: true, - follow: true - } -}; + title: "BarberShop Sadik", description: "Barberia professionale a Teramo - Tagli, rasature e cura della barba"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}