import type { Metadata } from "next"; import { Mulish } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const mulish = Mulish({ variable: "--font-mulish", subsets: ["latin"], }); export const metadata: Metadata = { title: "Happy Paws Shelter - Adopt Your Perfect Pet", description: "Find your perfect companion at Happy Paws Shelter. Browse adoptable dogs, cats, and more. Easy adoption process with loving support.", keywords: "pet adoption, dog adoption, cat adoption, animal shelter, rescue animals", metadataBase: new URL("https://happypawsshelter.com"), alternates: { canonical: "https://happypawsshelter.com" }, openGraph: { title: "Happy Paws Shelter - Adopt Your Perfect Pet", description: "Find your perfect companion at Happy Paws Shelter. Browse adoptable dogs, cats, and more.", type: "website", siteName: "Happy Paws Shelter", images: [{ url: "https://img.b2bpic.net/free-photo/woman-playing-with-rescue-dogs-shelter_23-2148682984.jpg", alt: "Happy Paws Shelter animals" }] }, twitter: { card: "summary_large_image", title: "Happy Paws Shelter - Adopt Your Perfect Pet", description: "Find your perfect companion at Happy Paws Shelter. Browse adoptable dogs, cats, and more.", images: ["https://img.b2bpic.net/free-photo/woman-playing-with-rescue-dogs-shelter_23-2148682984.jpg"] }, robots: { index: true, follow: true } }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}