diff --git a/src/app/meni/page.tsx b/src/app/meni/page.tsx
new file mode 100644
index 0000000..c0f8493
--- /dev/null
+++ b/src/app/meni/page.tsx
@@ -0,0 +1,263 @@
+"use client";
+
+import React from "react";
+import { ThemeProvider } from "@/components/theme/ThemeProvider";
+import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
+import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel";
+import ProductCardThree from "@/components/sections/product/ProductCardThree";
+
+const MenuPage = () => {
+ return (
+
+
+
+ {/* Hero Section */}
+
+
+
+
+ {/* Chicken Wings Section */}
+
+
+ {/* Chicken Strips Section */}
+
+
+ {/* Sauces Section */}
+
+
+ {/* Fries Section */}
+
+
+ {/* Fried Onion Rings Section */}
+
+
+ );
+};
+
+export default MenuPage;
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 8c188d0..f47d4eb 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -1,211 +1,67 @@
"use client";
-import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered";
-import HeroOverlay from "@/components/sections/hero/HeroOverlay";
-import ProductCardFour from "@/components/sections/product/ProductCardFour";
-import FeatureCardTwentyThree from "@/components/sections/feature/FeatureCardTwentyThree";
-import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
-import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard";
-import ContactSplit from "@/components/sections/contact/ContactSplit";
-import FooterBase from "@/components/sections/footer/FooterBase";
-import { Phone, Utensils } from "lucide-react";
+import React from "react";
+import { ThemeProvider } from "@/components/theme/ThemeProvider";
+import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
+import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel";
-export default function LandingPage() {
+const HomePage = () => {
return (
-
-
-
+
-
-
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
);
-}
+};
+
+export default HomePage;