| 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 ( |
| <html lang="en" className={`${anton.variable} ${oswald.variable} h-full`}> |
| <body className="min-h-full bg-zinc-50 text-zinc-900 antialiased">{children}</body> |
| </html> |
| ); |
| } |
|
|