Merge version_4 into main #3

Merged
bender merged 2 commits from version_4 into main 2026-03-03 05:00:39 +00:00
2 changed files with 17 additions and 44 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${inter.variable} antialiased`}>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -205,7 +205,7 @@ export default function HomePage() {
<ContactCTA
tag="Get in Touch"
tagIcon={Phone}
title="Ready to Book Your Pet's Care?"
title="Book Your Pet's Care Today Limited Availability"
description="Contact us today to schedule grooming or boarding. We're here to make sure your beloved pet receives the best care possible."
buttons={[
{ text: "Contact Us", href: "/contact" },
@@ -226,4 +226,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}