import type { Metadata } from "next"; import { Public_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; const publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], }); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { title: "Hope Haven Animal Shelter", description: "Every animal deserves a second chance. Discover your new best friend and join our mission to rescue, rehabilitate, and rehome pets in need."}; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}