import type { Metadata } from "next"; import { Anton, Oswald } from "next/font/google"; import "./globals.css"; const anton = Anton({ weight: "400", subsets: ["latin"], variable: "--font-anton", }); const oswald = Oswald({ weight: ["400", "700"], subsets: ["latin"], variable: "--font-oswald", }); export const metadata: Metadata = { title: "Caption Studio", description: "Burn animated word-by-word captions onto your videos", }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return ( {children} ); }