import type { Metadata } from "next"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { Noto_Sans } from "next/font/google"; import { Inter } from "next/font/google"; const workSans = Work_Sans({ variable: "--font-work-sans", subsets: ["latin"], }); export const metadata: Metadata = { title: "PawsHome Shelter - Adopt Your Perfect Pet Today", description: "Rescue and adopt your perfect companion at PawsHome Shelter. Browse 1000+ successfully rehomed animals and find your forever pet.", keywords: "pet adoption, animal shelter, rescue dogs, rescue cats, adopt pets, animal rescue, pet sanctuary", metadataBase: new URL("https://pawshome-shelter.com"), alternates: { canonical: "https://pawshome-shelter.com" }, openGraph: { title: "PawsHome Shelter - Adopt Your Perfect Pet Today", description: "Give a loving pet a second chance at happiness. Browse our wonderful animals waiting for their forever homes.", url: "https://pawshome-shelter.com", siteName: "PawsHome Shelter", type: "website", images: [ { url: "https://img.b2bpic.net/free-photo/closeup-shot-cute-kromfohrlander-puppy-sitting-fresh-grass_181624-19827.jpg", alt: "Happy pets at PawsHome Shelter" } ] }, twitter: { card: "summary_large_image", title: "PawsHome Shelter - Adopt Your Perfect Pet", description: "Find your perfect companion and give a rescue pet a loving home.", images: ["https://img.b2bpic.net/free-photo/closeup-shot-cute-kromfohrlander-puppy-sitting-fresh-grass_181624-19827.jpg"] }, robots: { index: true, follow: true } }; const notoSans = Noto_Sans({ variable: "--font-noto-sans", subsets: ["latin"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}