diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5c001aa..580d40b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,28 @@ import type { Metadata } from "next"; -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 inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], +}); + +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Beth's Boarding & Grooming - Expert Pet Care in Eatonton", - description: "Family-owned pet boarding and grooming facility in Eatonton. 20 years of expert care, 4.8★ Google rating. Clean facilities, experienced groomers, competitive pricing.", - keywords: "pet boarding, dog grooming, cat grooming, Eatonton pets, pet care, animal grooming", - robots: { - index: true, - follow: true, - }, - openGraph: { - title: "Beth's Boarding & Grooming - Expert Pet Care Since 2006", - description: "Family-owned pet boarding and grooming facility treating every pet like family.", - type: "website", - siteName: "Beth's Boarding & Grooming", - images: [ - { - url: "http://img.b2bpic.net/free-photo/smiling-woman-kitchen-holding-cute-white-maltese-dog_1153-9862.jpg", - alt: "Beth's Boarding and Grooming Facility", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Beth's Boarding & Grooming", - description: "Expert pet boarding and grooming in Eatonton. 20 years, family-owned, 4.8★.", - images: ["http://img.b2bpic.net/free-photo/smiling-woman-kitchen-holding-cute-white-maltese-dog_1153-9862.jpg"], - }, -}; + title: "Beth's Boarding & Grooming | Expert Pet Care in Eatonton", description: "Professional pet boarding and grooming services in Eatonton. Expert care for dogs and cats since 2006. Book now!"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +