diff --git a/src/app/order-now/page.tsx b/src/app/order-now/page.tsx
new file mode 100644
index 0000000..436efac
--- /dev/null
+++ b/src/app/order-now/page.tsx
@@ -0,0 +1,113 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
+import HeroOverlay from '@/components/sections/hero/HeroOverlay';
+import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
+import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
+import { ShoppingBag, Truck } from 'lucide-react';
+
+export default function OrderNowPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 13184b2..76cc95a 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -33,10 +33,11 @@ export default function LandingPage() {
{ name: "About", id: "about" },
{ name: "Menu", id: "features" },
{ name: "Reviews", id: "testimonial" },
+ { name: "Order Now", id: "order" },
{ name: "Contact", id: "contact" }
]}
button={{
- text: "Order Now", href: "contact"
+ text: "Order Now", href: "order"
}}
/>
@@ -53,7 +54,7 @@ export default function LandingPage() {
showDimOverlay={true}
buttons={[
{ text: "📞 Call Now", href: "tel:(08)81770469" },
- { text: "🛵 Order Online", href: "contact" }
+ { text: "🛵 Order Online", href: "order" }
]}
/>
@@ -96,7 +97,7 @@ export default function LandingPage() {
gridVariant="four-items-2x2-equal-grid"
useInvertedBackground={true}
buttons={[
- { text: "📝 View Complete Menu", href: "contact" }
+ { text: "📝 View Complete Menu", href: "order" }
]}
/>
@@ -152,6 +153,27 @@ export default function LandingPage() {
/>
+
+
+
+