From 183dc7cf3c34d67b359bc95d3310bf97bc1132b0 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 14:29:19 +0000 Subject: [PATCH 1/2] Add src/app/order/page.tsx --- src/app/order/page.tsx | 194 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 194 insertions(+) create mode 100644 src/app/order/page.tsx diff --git a/src/app/order/page.tsx b/src/app/order/page.tsx new file mode 100644 index 0000000..97c6cd3 --- /dev/null +++ b/src/app/order/page.tsx @@ -0,0 +1,194 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboardRotatedCarousel"; +import ProductCardTwo from "@/components/sections/product/ProductCardTwo"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import { ShoppingCart, Zap, Truck, Coffee } from "lucide-react"; + +export default function OrderPage() { + return ( + + + +
+ +
+ + + +
+ +
+ +
+ +
+ + +
+ ); +} -- 2.49.1 From af963157f2dedea3b80c89636bb62ba3e6f8ac81 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 14:29:19 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 931a70b..e7b9ee2 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -46,6 +46,7 @@ export default function CoffeeTheoryLandingPage() { { name: "Why Us", id: "features" }, { name: "About", id: "about" }, { name: "Reviews", id: "testimonials" }, + { name: "Order", id: "order" }, { name: "Visit", id: "location" }, { name: "Contact", id: "contact" }, ]} @@ -204,6 +205,23 @@ export default function CoffeeTheoryLandingPage() { /> +
+ +
+