subnav and other stuff

This commit is contained in:
2025-12-03 20:56:05 -05:00
parent 76ebb30d96
commit 7cee90381d
163 changed files with 1216 additions and 3515 deletions
+9 -14
View File
@@ -1,25 +1,20 @@
"use client";
import "./globals.css";
import { Inter } from "next/font/google";
import type { ReactNode } from "react";
import { AuthProvider } from "@/context/AuthContext";
import { TopNav } from "@/components/TopNav";
const inter = Inter({ subsets: ["latin"] });
export const metadata = {
title: "Shadow Standard Co.",
description: "The Armory — Early Access",
};
import { TopNav } from "@/components/TopNav"; // or default import if that's how you exported it
import { BuilderNav } from "@/components/BuilderNav";
export default function RootLayout({ children }: { children: ReactNode }) {
return (
<html lang="en">
<body className={inter.className}>
<body className="bg-black text-zinc-100">
{/* AuthProvider wraps everything that uses useAuth */}
<AuthProvider>
<div className="min-h-screen flex flex-col bg-black text-zinc-50">
<TopNav />
<main className="flex-1">{children}</main>
</div>
<TopNav />
<BuilderNav />
<main className="min-h-screen">{children}</main>
</AuthProvider>
</body>
</html>