From 8a12cac60f892bb57968d87f403469b2cd2a08be Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 21 Feb 2026 14:03:19 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 35 +++++++++++++++++++---------------- 1 file changed, 19 insertions(+), 16 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index fe3f591..270bc3e 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,7 +1,7 @@ "use client" import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; -import HeroSplit from '@/components/sections/hero/HeroSplit'; +import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; import MediaAbout from '@/components/sections/about/MediaAbout'; import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; @@ -12,6 +12,18 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { Award, Coffee, Heart, Leaf, MapPin, Sparkles, TrendingUp, Users, Zap } from "lucide-react"; export default function CoffeePage() { + const commonNavItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "#about" }, + { name: "Menu", id: "#products" }, + { name: "Experience", id: "#features" }, + { name: "Community", id: "#testimonials" }, + { name: "Contact", id: "#contact" }, + { name: "Blog", id: "/blog" }, + { name: "Shop", id: "/shop" } + ]; + const commonButton = { text: "Order Now", href: "/shop" }; + return (
-
@@ -216,4 +219,4 @@ export default function CoffeePage() {
); -} \ No newline at end of file +}