import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; import { Archivo } from "next/font/google"; export const metadata: Metadata = { title: 'Happy Paws Shelter | Adopt a Pet Today', description: 'Join Happy Paws Shelter and find your new best friend. Browse our pets available for adoption and make a difference.', openGraph: { "title": "Happy Paws Shelter", "description": "Adopt a loving rescue pet today.", "siteName": "Happy Paws Shelter", "type": "website" }, }; const archivo = Archivo({ variable: "--font-archivo", subsets: ["latin"], }); export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}