diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bd9a78d..b99722b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1410 +1,27 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; -import { Inter } 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 montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Toro's Barbershop | Expert Haircuts in Centralia, WA", description: "Premium barbershop in Centralia offering expert haircuts, fades, and styles for all ages. Walk-ins Wed–Fri, appointments Tue & Sat. Affordable prices, friendly atmosphere.", keywords: "barbershop, haircuts, fades, barber, Centralia Washington, affordable haircuts, professional barber", openGraph: { - title: "Toro's Barbershop | Expert Haircuts in Centralia, WA", description: "Premium barbershop offering high-quality haircuts and fades for everyone.", siteName: "Toro's Barbershop", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/barber-styling-hair-customer-with-mousse_23-2147778801.jpg", alt: "Toro's Barbershop"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Toro's Barbershop | Expert Haircuts", description: "Premium barbershop in Centralia. Walk-ins welcome Wed–Fri.", images: ["http://img.b2bpic.net/free-photo/barber-styling-hair-customer-with-mousse_23-2147778801.jpg"], - }, -}; + title: "Toro's Barbershop", description: "Premium barbershop in Centralia, Washington"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -