import type { Metadata } from "next"; import { Work_Sans } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const workSans = Work_Sans({ variable: "--font-work-sans", subsets: ["latin"], }); export const metadata: Metadata = { title: "PawsHelp Shelter - Pet Adoption & Rescue | Find Your Perfect Companion", description: "Adopt your next best friend from PawsHelp Shelter. We rescue, rehabilitate, and rehome abandoned pets. Browse available animals, volunteer, or donate to support our mission.", keywords: "pet adoption, dog adoption, cat adoption, animal shelter, pet rescue, volunteer, donate animals", metadataBase: new URL("https://pawshelpshelter.com"), alternates: { canonical: "https://pawsheltershelter.com" }, robots: { index: true, follow: true }, openGraph: { title: "PawsHelp Shelter - Pet Adoption & Rescue", description: "Adopt your next best friend from PawsHelp Shelter. We rescue, rehabilitate, and rehome abandoned pets.", type: "website", siteName: "PawsHelp Shelter", images: [ { url: "https://img.b2bpic.net/free-photo/mother-with-kids-dog-autumn-park_1303-17173.jpg", alt: "Happy adopted pets with their loving families" } ] }, twitter: { card: "summary_large_image", title: "PawsHelp Shelter - Pet Adoption & Rescue", description: "Adopt your next best friend from PawsHelp Shelter. We rescue, rehabilitate, and rehome abandoned pets.", images: ["https://img.b2bpic.net/free-photo/mother-with-kids-dog-autumn-park_1303-17173.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}