import type { Metadata } from "next"; import { Poppins } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const poppins = Poppins({ variable: "--font-poppins", subsets: ["latin"], weight: ["300", "400", "500", "600", "700"] }); export const metadata: Metadata = { title: "PawsHaven - Pet Adoption & Animal Rescue", description: "Adopt your perfect pet from PawsHaven. Browse available dogs, cats, and animals ready for loving homes. Simple adoption process with ongoing support.", keywords: ["pet adoption", "animal rescue", "adopt a dog", "adopt a cat", "shelter animals", "pet rescue", "loving homes"], metadataBase: new URL("https://pawshaven.example.com"), alternates: { canonical: "https://pawshaven.example.com" }, robots: { index: true, follow: true }, openGraph: { title: "PawsHaven - Pet Adoption & Animal Rescue", description: "Find your perfect companion and change a life through adoption. Browse hundreds of adoptable pets.", type: "website", siteName: "PawsHaven", url: "https://pawshaven.example.com", images: [{ url: "https://img.b2bpic.net/free-photo/happy-boy-posing-park-with-dog-parents_23-2148647786.jpg", alt: "Happy family with adopted pets" }] }, twitter: { card: "summary_large_image", title: "PawsHaven - Pet Adoption & Animal Rescue", description: "Give a pet a loving home. Browse adoptable animals and start your adoption journey today.", images: ["https://img.b2bpic.net/free-photo/happy-boy-posing-park-with-dog-parents_23-2148647786.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}