import { Syne, DM_Sans } from "next/font/google"; import { RiftPageFlow } from "@/components/brand/RiftPageFlow"; import { JsonLd } from "@/components/seo/JsonLd"; import { SiteHeader } from "@/components/layout/SiteHeader"; import { SiteFooter } from "@/components/layout/SiteFooter"; import { rootMetadata } from "@/lib/seo"; import "./globals.css"; export const metadata = rootMetadata; const display = Syne({ subsets: ["latin"], variable: "--font-display", }); const body = DM_Sans({ subsets: ["latin"], variable: "--font-body", }); export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (
{children}
); }