import type { Metadata } from "next"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { Public_Sans } from "next/font/google"; import { Inter } from "next/font/google"; const montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); export const metadata: Metadata = { title: "Paw Haven Shelter - Adopt Your Perfect Pet | Dogs, Cats & More", description: "Find your perfect pet companion at Paw Haven Shelter. Browse adoptable dogs, cats, rabbits, and more. Simple adoption process, loving support, and forever homes await.", keywords: "pet adoption, adopt a dog, adopt a cat, animal shelter, rescue pets, pet rescue, forever home", metadataBase: new URL("https://pawhavenshelter.org"), alternates: { canonical: "https://pawhavenshelter.org" }, robots: { index: true, follow: true }, openGraph: { title: "Paw Haven Shelter - Find Your Perfect Pet", description: "Discover adoptable dogs, cats, rabbits, and more. Every pet deserves a second chance at happiness.", url: "https://pawhavenshelter.org", siteName: "Paw Haven Shelter", type: "website", images: [ { url: "https://img.b2bpic.net/free-photo/full-shot-women-dog-posing_23-2148977468.jpg", alt: "Happy dogs and cats ready for adoption" } ] }, twitter: { card: "summary_large_image", title: "Paw Haven Shelter - Adopt Today", description: "Find your perfect pet companion. Dogs, cats, rabbits, and more awaiting their forever homes.", images: ["https://img.b2bpic.net/free-photo/full-shot-women-dog-posing_23-2148977468.jpg"] } }; const notoSans = Noto_Sans({ variable: "--font-noto-sans", subsets: ["latin"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); const workSans = Work_Sans({ variable: "--font-work-sans", subsets: ["latin"], }); const sourceSans3 = Source_Sans_3({ variable: "--font-source-sans-3", subsets: ["latin"], }); const publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}