First commit

This commit is contained in:
mdares
2026-02-07 18:08:42 -06:00
commit b7a86a2d1c
57 changed files with 9188 additions and 0 deletions

25
app/layout.tsx Normal file
View File

@@ -0,0 +1,25 @@
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 (
<html lang="en">
<body>
<div className="acve-shell flex min-h-screen flex-col">
<Navbar />
<main className="mx-auto w-full max-w-[1300px] flex-1 px-4 py-6 md:py-8">{children}</main>
<Footer />
</div>
<AssistantDrawer />
</body>
</html>
);
}