import type { Metadata } from "next"; import { Inter_Tight } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { Open_Sans } from "next/font/google"; import { Work_Sans } from "next/font/google"; import { Montserrat } from "next/font/google"; import { Inter } from "next/font/google"; const interTight = Inter_Tight({ variable: "--font-inter-tight", subsets: ["latin"], weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { title: "Safe Haven Animal Shelter | Pet Adoption & Rescue", description: "Find your perfect companion at Safe Haven Shelter. Browse adoptable dogs, cats, and small pets. Learn about our rescue mission and how to adopt.", keywords: "animal shelter, pet adoption, dog rescue, cat adoption, animal rescue, adoptable pets", openGraph: { title: "Safe Haven Animal Shelter | Pet Adoption", description: "Thousands of happy adoptions. Meet your future companion today.", siteName: "Safe Haven Shelter", images: [ { url: "https://img.b2bpic.net/free-photo/smiley-woman-playing-with-cute-dog-up-adoption_23-2148682991.jpg", alt: "Happy animals at Safe Haven Shelter" } ], type: "website" }, twitter: { card: "summary_large_image", title: "Safe Haven Animal Shelter", description: "Find your perfect pet companion", images: ["https://img.b2bpic.net/free-photo/smiley-woman-playing-with-cute-dog-up-adoption_23-2148682991.jpg"] }, robots: { index: true, follow: true } }; const openSans = Open_Sans({ variable: "--font-open-sans", subsets: ["latin"], }); const workSans = Work_Sans({ variable: "--font-work-sans", subsets: ["latin"], }); const montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}