Spaces:
Running
Running
| import type { Metadata } from "next"; | |
| import { Inter } from "next/font/google"; | |
| import "./globals.css"; | |
| import { cn } from "@/lib/utils"; | |
| const inter = Inter({ | |
| subsets: ["latin"], | |
| variable: "--font-inter", | |
| }); | |
| export const metadata: Metadata = { | |
| title: "VidSimplify - AI-Powered Animation Generator", | |
| description: "Transform text, PDFs, and URLs into stunning educational animations powered by AI and Manim", | |
| }; | |
| // ... imports | |
| export default function RootLayout({ | |
| children, | |
| }: Readonly<{ | |
| children: React.ReactNode; | |
| }>) { | |
| return ( | |
| <html lang="en"> | |
| <body className={cn( | |
| "min-h-screen bg-slate-950 font-sans antialiased", | |
| inter.variable | |
| )}> | |
| {children} | |
| </body> | |
| </html> | |
| ); | |
| } | |