import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import Link from "next/link"; const inter = Inter({ subsets: ["latin"], weight: ["400", "500", "600", "700"], display: "swap", }); export const metadata: Metadata = { metadataBase: new URL("https://placement.savethedogs.io"), title: { default: "The Simple Heart Initiative", template: "%s | The Simple Heart Initiative", }, description: "The Simple Heart Initiative is a 501(c)(3) nonprofit building a mass movement of compassion — through open rescue, investigation, and storytelling.", openGraph: { title: "The Simple Heart Initiative", description: "Lessons in compassion, taught by the animals. A 501(c)(3) nonprofit building a mass movement for open rescue.", type: "website", siteName: "The Simple Heart Initiative", locale: "en_US", }, }; function Header() { return (
); } function Footer() { return ( ); } export default function RootLayout({ children }: { children: React.ReactNode }) { return (
{children}