import type { Metadata } from "next"; import "./globals.css"; import Navbar from "@/components/Navbar"; import Footer from "@/components/Footer"; import AssistantDrawer from "@/components/AssistantDrawer"; export const metadata: Metadata = { title: "ACVE", description: "ACVE Coursera/Udemy-style legal learning MVP", }; export default function RootLayout({ children }: Readonly<{ children: React.ReactNode }>) { return (