diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 635cc92..b21a304 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1422 +1,27 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Poppins } 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 poppins = Poppins({ - variable: "--font-poppins", subsets: ["latin"], - weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Luxe Hair Studio - Professional Hair Appointments", description: "Book professional hair appointments at Luxe Hair Studio. Expert stylists for coloring, cuts, and treatments. Transform your look today.", keywords: "hair salon, haircuts, hair coloring, professional stylists, beauty services, hair appointments", metadataBase: new URL("https://luxehairstudio.com"), - openGraph: { - title: "Luxe Hair Studio", description: "Transform your look with professional hair services from award-winning stylists.", siteName: "Luxe Hair Studio", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/architecture_1122-1804.jpg", alt: "Luxe Hair Studio Professional Hair Services"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Luxe Hair Studio", description: "Professional hair coloring, cuts, and treatments by expert stylists.", images: ["http://img.b2bpic.net/free-photo/architecture_1122-1804.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Luxe Hair Studio", description: "Professional hair care services including cuts, coloring, and treatments"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -