From bd2819372042da18264c4e01b6e5d10d834fe3a6 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 14:17:10 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 42 ++++++++++++------------------------------ 1 file changed, 12 insertions(+), 30 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9baf9f8..bcbe332 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,45 +1,28 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito_Sans } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Nando Parrucchiere | Professional Hair Salon Ottaviano", description: "Premium hair salon in Ottaviano, Naples. Expert haircuts, coloring, and styling services. Call +39 081 8278988 to book your appointment today.", keywords: "hair salon Ottaviano, barber Ottaviano, professional haircuts, hair coloring, styling services, Nando Parrucchiere", openGraph: { - title: "Nando Parrucchiere | Professional Hair Salon", description: "Transform your look with our expert hair services in Ottaviano. Professional styling, coloring, and haircuts.", url: "https://nandoparrucchiere.com", siteName: "Nando Parrucchiere", type: "website"}, - twitter: { - card: "summary_large_image", title: "Nando Parrucchiere - Hair Salon Ottaviano", description: "Premium hair salon in Ottaviano, Naples. Expert haircuts, coloring, and styling services."}, -}; + title: "Nando Parrucchiere", description: "Premium hair care experience in Ottaviano"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +