Move navbar styles to globals.css, fix active underline logic

This commit is contained in:
2026-06-27 16:54:58 -05:00
parent 3bf7642343
commit 93e9e15451
4 changed files with 147 additions and 83 deletions
+2 -1
View File
@@ -1,4 +1,5 @@
import Navbar from '@/components/Navbar';
import './globals.css';
export const metadata = {
title: 'La Huasca',
@@ -12,7 +13,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body style={{ margin: 0, fontFamily: 'system-ui, sans-serif', background: '#FAF7F0', color: '#1a1a1a' }}>
<body>
<Navbar />
{children}
</body>