feat: add desktop navigation matching Figma design

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Marco
2026-06-30 19:12:14 +00:00
parent 3b7905c7ac
commit de924cae2d
2 changed files with 68 additions and 1 deletions
+5 -1
View File
@@ -1,6 +1,7 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { Navbar } from "./components/Navbar";
const geistSans = Geist({
variable: "--font-geist-sans",
@@ -27,7 +28,10 @@ export default function RootLayout({
lang="en"
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
>
<body className="min-h-full flex flex-col">{children}</body>
<body className="min-h-full flex flex-col">
<Navbar />
{children}
</body>
</html>
);
}