diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
new file mode 100644
index 0000000..275b369
--- /dev/null
+++ b/src/app/about/page.tsx
@@ -0,0 +1,41 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import ReactLenis from "lenis/react";
+import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
+import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
+import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
+import { Utensils } from "lucide-react";
+
+export default function AboutPage() {
+ return (
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
new file mode 100644
index 0000000..8631335
--- /dev/null
+++ b/src/app/contact/page.tsx
@@ -0,0 +1,41 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import ReactLenis from "lenis/react";
+import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
+import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
+import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
+
+export default function ContactPage() {
+ return (
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx
new file mode 100644
index 0000000..530c9a2
--- /dev/null
+++ b/src/app/menu/page.tsx
@@ -0,0 +1,47 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import ReactLenis from "lenis/react";
+import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
+import ProductCardThree from '@/components/sections/product/ProductCardThree';
+import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
+
+export default function MenuPage() {
+ return (
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index c796158..408876d 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -30,10 +30,10 @@ export default function LandingPage() {
@@ -53,7 +53,7 @@ export default function LandingPage() {
]}
avatarText="180+ Reviews"
buttons={[
- { text: "View Menu", href: "#menu" },
+ { text: "View Menu", href: "/menu" },
{ text: "Order Online", href: "#" },
]}
buttonAnimation="slide-up"
@@ -146,7 +146,7 @@ export default function LandingPage() {
description="Visit us at 5A Portico Parade, Toongabbie NSW 2146. We are open daily and ready to serve you! Call (02) 9682 6926 for reservations or inquiries."
buttons={[
{ text: "Call Now", href: "tel:+61296826926" },
- { text: "Get Directions", href: "#" },
+ { text: "Get Directions", href: "/contact" },
]}
/>
@@ -155,8 +155,8 @@ export default function LandingPage() {