import type { Metadata } from "next"; import { DM_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "PawsHome - Adopt Your Perfect Pet | Animal Shelter", description: "Discover your perfect companion at PawsHome. Browse adoptable dogs, cats, rabbits, and birds. Health-screened, vaccinated pets ready for loving homes.", keywords: "pet adoption, dog adoption, cat adoption, animal shelter, rescue animals, forever homes", metadataBase: new URL("https://pawshome.org"), alternates: { canonical: "https://pawshome.org" }, openGraph: { title: "PawsHome - Find Your Perfect Pet Companion", description: "Browse available pets and start your adoption journey. Every adoption saves a life.", url: "https://pawshome.org", siteName: "PawsHome", images: [ { url: "https://img.b2bpic.net/free-photo/full-shot-women-dog-posing_23-2148977468.jpg", alt: "Happy adoptable pets at PawsHome" } ], type: "website" }, twitter: { card: "summary_large_image", title: "PawsHome - Pet Adoption Made Easy", description: "Find your new best friend. Adopt from PawsHome today.", images: ["https://img.b2bpic.net/free-photo/full-shot-women-dog-posing_23-2148977468.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}