import type { Metadata } from "next"; import "./globals.css"; export const metadata: Metadata = { title: "Dada — AI Visual Novel", description: "An open-source visual novel where every frame is generated by AI.", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (
{children} ); }