diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index 6d8211a..47e1f2f 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -29,6 +29,7 @@ export default function AboutPage() {
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Beers", id: "/beers" },
+ { name: "Order Online", id: "/order" },
{ name: "Events", id: "/events" },
{ name: "Contact", id: "/contact" },
]}
@@ -115,4 +116,4 @@ export default function AboutPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/beers/page.tsx b/src/app/beers/page.tsx
index 98b6559..ba92398 100644
--- a/src/app/beers/page.tsx
+++ b/src/app/beers/page.tsx
@@ -29,6 +29,7 @@ export default function BeersPage() {
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Beers", id: "/beers" },
+ { name: "Order Online", id: "/order" },
{ name: "Events", id: "/events" },
{ name: "Contact", id: "/contact" },
]}
@@ -91,4 +92,4 @@ export default function BeersPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index a230515..bfd9b0d 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -29,6 +29,7 @@ export default function ContactPage() {
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Beers", id: "/beers" },
+ { name: "Order Online", id: "/order" },
{ name: "Events", id: "/events" },
{ name: "Contact", id: "/contact" },
]}
@@ -93,4 +94,4 @@ export default function ContactPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/events/page.tsx b/src/app/events/page.tsx
index c396f57..2fa193b 100644
--- a/src/app/events/page.tsx
+++ b/src/app/events/page.tsx
@@ -29,6 +29,7 @@ export default function EventsPage() {
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Beers", id: "/beers" },
+ { name: "Order Online", id: "/order" },
{ name: "Events", id: "/events" },
{ name: "Contact", id: "/contact" },
]}
@@ -88,4 +89,4 @@ export default function EventsPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index beeaa0e..a73274e 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -35,9 +35,7 @@ export default function RootLayout({
return (
-
+
{children}
@@ -1411,4 +1409,4 @@ export default function RootLayout({
);
-}
\ No newline at end of file
+}
diff --git a/src/app/order/page.tsx b/src/app/order/page.tsx
new file mode 100644
index 0000000..921b605
--- /dev/null
+++ b/src/app/order/page.tsx
@@ -0,0 +1,95 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
+import ProductCardFour from "@/components/sections/product/ProductCardFour";
+import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
+import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
+import Link from "next/link";
+import { ShoppingCart, Sparkles } from "lucide-react";
+
+export default function OrderPage() {
+ return (
+
+ {/* Navbar */}
+
+
+
+
+ {/* Order Online Section */}
+
+
+ {/* Age Verification & Shipping Section */}
+
+
+
+
+ {/* Footer */}
+
+
+ );
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 8784583..638d3bc 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -33,6 +33,7 @@ export default function HomePage() {
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Beers", id: "/beers" },
+ { name: "Order Online", id: "/order" },
{ name: "Events", id: "/events" },
{ name: "Contact", id: "/contact" },
]}
@@ -49,6 +50,7 @@ export default function HomePage() {
description="Award-Winning Craft Beer in Conception Bay South. Locally brewed. Community driven. Always fresh."
buttons={[
{ text: "View Our Beers", href: "/beers" },
+ { text: "Order Online", href: "/order" },
{ text: "Get Directions", href: "#visit" },
]}
slides={[
@@ -202,4 +204,4 @@ export default function HomePage() {
);
-}
\ No newline at end of file
+}