diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx
new file mode 100644
index 0000000..faa4488
--- /dev/null
+++ b/src/app/menu/page.tsx
@@ -0,0 +1,190 @@
+"use client"
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
+import ProductCardThree from '@/components/sections/product/ProductCardThree';
+import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
+import FooterSimple from '@/components/sections/footer/FooterSimple';
+
+export default function MenuPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 27e0961..85ce9d8 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -32,6 +32,7 @@ export default function LandingPage() {
{ name: "Home", id: "home" },
{ name: "Signature Favorites", id: "favorites" },
{ name: "About", id: "about" },
+ { name: "Reviews", id: "reviews" },
{ name: "Visit Us", id: "contact" }
]}
button={{
@@ -85,7 +86,7 @@ export default function LandingPage() {
id: "4", title: "Worth the Visit", quote: "The combination of delicious food, generous portions, and authentic small-town service makes this a must-visit destination.", name: "David Kim", role: "Satisfied Customer", imageSrc: "http://img.b2bpic.net/free-photo/excited-cheerful-blond-girl-rejoicing-camera-with-copy-space-text-promotional-content-near-yellow-background_574295-2365.jpg", imageAlt: "customer portrait satisfied restaurant experience"
}
]}
- buttons={[{ text: "See Full Reviews", href: "#" }]}
+ buttons={[{ text: "See Full Reviews", href: "/reviews" }]}
ariaLabel="Customer testimonials section"
/>
@@ -202,10 +203,11 @@ export default function LandingPage() {
columns={[
{
title: "Navigation", items: [
- { label: "Home", href: "#home" },
- { label: "Signature Favorites", href: "#favorites" },
- { label: "About", href: "#about" },
- { label: "Contact", href: "#contact" }
+ { label: "Home", href: "/" },
+ { label: "Signature Favorites", href: "/#favorites" },
+ { label: "About", href: "/#about" },
+ { label: "Reviews", href: "/reviews" },
+ { label: "Contact", href: "/#contact" }
]
},
{
@@ -232,4 +234,4 @@ export default function LandingPage() {
);
-}
+}
\ No newline at end of file
diff --git a/src/app/reviews/page.tsx b/src/app/reviews/page.tsx
new file mode 100644
index 0000000..f9fe958
--- /dev/null
+++ b/src/app/reviews/page.tsx
@@ -0,0 +1,132 @@
+"use client"
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
+import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
+import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
+import FooterSimple from '@/components/sections/footer/FooterSimple';
+
+export default function ReviewsPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file