diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx
index 6335909..a3dae57 100644
--- a/src/app/menu/page.tsx
+++ b/src/app/menu/page.tsx
@@ -137,6 +137,115 @@ export default function MenuPage() {
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
+
+
{/* Navbar */}
setActiveCategory(cat.id)}
- className={`px-6 py-2 rounded-full transition-all ${
- activeCategory === cat.id
+ className={`px-6 py-2 rounded-full transition-all ${ activeCategory === cat.id
? "bg-gradient-to-r from-orange-500 to-red-500 text-white"
: "bg-gray-200 text-gray-800 hover:bg-gray-300"
}`}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index fb742ab..026dd29 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -106,6 +106,127 @@ export default function HomePage() {
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
+
+
{/* Persistent Top Navigation Bar */}
);
-}
+}
\ No newline at end of file