import type { Metadata } from "next"; import { Prata } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const prata = Prata({ variable: "--font-prata", subsets: ["latin"], weight: ["400"], }); export const metadata: Metadata = { title: "PawsHaven Pet Shelter - Adopt Your Perfect Pet Today", description: "Rescue and adopt animals from PawsHaven. Browse available pets, learn about adoption, and support animal welfare. Save a life today.", keywords: "pet adoption, animal shelter, rescue animals, adopt dogs, adopt cats, pet rescue", robots: { index: true, follow: true }, openGraph: { title: "PawsHaven Pet Shelter - Adopt Your Perfect Pet", description: "Help animals find loving homes. Browse our available pets and join the adoption community.", siteName: "PawsHaven Pet Shelter", type: "website", images: [ { url: "https://img.b2bpic.net/free-photo/smiley-woman-playing-with-cute-dog-up-adoption_23-2148682991.jpg", alt: "PawsHaven animal shelter" } ] }, twitter: { card: "summary_large_image", title: "PawsHaven Pet Shelter - Adopt Today", description: "Rescue and adopt animals. Browse available pets and support animal welfare.", images: ["https://img.b2bpic.net/free-photo/smiley-woman-playing-with-cute-dog-up-adoption_23-2148682991.jpg"] } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}