File size: 745 Bytes
ef4c36f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | 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>
);
}
|