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 ( {children} ); }