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 ( + + + +
+ +
+ + + +
+ +
+ +
+ +
+ + +
+ ); +} 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() { /> +
+ +
+