From 6e89cf89024a1c42994d60aff8dd18042af39f4d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 05:00:34 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 57 ++++++++++++---------------------------------- 1 file changed, 15 insertions(+), 42 deletions(-) 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} +