diff --git a/src/app/page.tsx b/src/app/page.tsx index 3794415..7cc6dad 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -14,9 +14,11 @@ import { Coffee, Flame, Clock, Sparkles, Droplet, Timer, Target, Leaf, Handshake export default function HomePage() { const navItems = [ { name: "Home", id: "/" }, - { name: "Menu", id: "/menu" }, - { name: "About Us", id: "/about" }, - { name: "Contact", id: "/contact" } + { name: "About", id: "#about" }, + { name: "Features", id: "#features" }, + { name: "Products", id: "#products" }, + { name: "Testimonials", id: "#testimonials" }, + { name: "Contact", id: "#contact" } ]; return ( @@ -37,8 +39,7 @@ export default function HomePage() { brandName="Brew Haven" navItems={navItems} button={{ - text: "Order Now", - href: "/order" + text: "Order Now", href: "#contact" }} /> @@ -49,7 +50,7 @@ export default function HomePage() { description="Discover the perfect cup of coffee crafted with passion and precision. From single-origin beans to signature blends, we serve quality that awakens your senses." background={{ variant: "radial-gradient" }} buttons={[ - { text: "Explore Menu", href: "/menu" }, + { text: "Explore Features", href: "#features" }, { text: "Order Online", href: "#contact" } ]} buttonAnimation="slide-up" @@ -67,19 +68,13 @@ export default function HomePage() { description="We believe that great coffee starts with passion and continues with precision. Every bean is carefully selected and roasted to bring out its unique character." tabs={[ { - id: "mission", - label: "Our Mission", - description: "To provide our community with exceptional coffee experiences that inspire meaningful connections and celebrate the art of coffee craftsmanship." + id: "mission", label: "Our Mission", description: "To provide our community with exceptional coffee experiences that inspire meaningful connections and celebrate the art of coffee craftsmanship." }, { - id: "sourcing", - label: "Ethical Sourcing", - description: "We partner directly with coffee farmers around the world, ensuring fair trade practices and sustainable farming methods that benefit both people and planet." + id: "sourcing", label: "Ethical Sourcing", description: "We partner directly with coffee farmers around the world, ensuring fair trade practices and sustainable farming methods that benefit both people and planet." }, { - id: "expertise", - label: "Expertise", - description: "Our baristas are certified professionals trained in the latest coffee techniques, from latte art to espresso extraction science." + id: "expertise", label: "Expertise", description: "Our baristas are certified professionals trained in the latest coffee techniques, from latte art to espresso extraction science." } ]} imageSrc="https://img.b2bpic.net/free-photo/parisian-coffee-shop-style-with-tasty-coffee-served-wooden-table-coffee-shop-design_482257-18283.jpg?_wi=1" @@ -99,10 +94,7 @@ export default function HomePage() { tagAnimation="slide-up" features={[ { - id: "1", - title: "Artisan Roasting", - description: "We small-batch roast our beans to order, ensuring maximum freshness and flavor complexity. Our roasters use decades of experience to achieve the perfect roast profile for each origin.", - media: { + id: "1", title: "Artisan Roasting", description: "We small-batch roast our beans to order, ensuring maximum freshness and flavor complexity. Our roasters use decades of experience to achieve the perfect roast profile for each origin.", media: { imageSrc: "https://img.b2bpic.net/free-photo/tattooed-barista-hand-holds-raw-green-coffee-beans-from-white-plastic-basket-cotton-bags-europalet-warehouse_346278-886.jpg?_wi=1" }, items: [ @@ -113,10 +105,7 @@ export default function HomePage() { reverse: false }, { - id: "2", - title: "Expert Brewing", - description: "Every drink is prepared with technique and care. Our baristas are trained in precision brewing methods to extract the perfect balance from each bean.", - media: { + id: "2", title: "Expert Brewing", description: "Every drink is prepared with technique and care. Our baristas are trained in precision brewing methods to extract the perfect balance from each bean.", media: { imageSrc: "https://img.b2bpic.net/free-photo/making-drip-coffee-cafe_53876-31851.jpg?_wi=1" }, items: [ @@ -127,10 +116,7 @@ export default function HomePage() { reverse: true }, { - id: "3", - title: "Sustainable Sourcing", - description: "We source directly from ethical farms around the world, building lasting relationships with producers who share our commitment to quality and sustainability.", - media: { + id: "3", title: "Sustainable Sourcing", description: "We source directly from ethical farms around the world, building lasting relationships with producers who share our commitment to quality and sustainability.", media: { imageSrc: "https://img.b2bpic.net/free-photo/closeup-shot-brown-bag-with-red-coffee-beans-it_181624-18802.jpg?_wi=1" }, items: [ @@ -156,31 +142,13 @@ export default function HomePage() { tagAnimation="slide-up" products={[ { - id: "1", - name: "Classic Espresso", - price: "$3.50", - variant: "Rich & Bold", - imageSrc: "https://img.b2bpic.net/free-photo/double-espresso-coffee-mug-with-cinnamon-sticks-coffee-beans-wooden-board_181624-57625.jpg?_wi=1", - imageAlt: "Classic espresso shot", - isFavorited: false + id: "1", name: "Classic Espresso", price: "$3.50", variant: "Rich & Bold", imageSrc: "https://img.b2bpic.net/free-photo/double-espresso-coffee-mug-with-cinnamon-sticks-coffee-beans-wooden-board_181624-57625.jpg?_wi=1", imageAlt: "Classic espresso shot", isFavorited: false }, { - id: "2", - name: "Silky Cappuccino", - price: "$4.75", - variant: "Creamy & Smooth", - imageSrc: "https://img.b2bpic.net/free-photo/glass-cappuccino-with-cream_140725-159.jpg?_wi=1", - imageAlt: "Cappuccino with latte art", - isFavorited: false + id: "2", name: "Silky Cappuccino", price: "$4.75", variant: "Creamy & Smooth", imageSrc: "https://img.b2bpic.net/free-photo/glass-cappuccino-with-cream_140725-159.jpg?_wi=1", imageAlt: "Cappuccino with latte art", isFavorited: false }, { - id: "3", - name: "Cold Brew", - price: "$4.25", - variant: "Refreshing & Smooth", - imageSrc: "https://img.b2bpic.net/free-photo/cold-summer-coffee-drink-with-ice-orange-juice_169016-21399.jpg?_wi=1", - imageAlt: "Iced cold brew coffee", - isFavorited: false + id: "3", name: "Cold Brew", price: "$4.25", variant: "Refreshing & Smooth", imageSrc: "https://img.b2bpic.net/free-photo/cold-summer-coffee-drink-with-ice-orange-juice_169016-21399.jpg?_wi=1", imageAlt: "Iced cold brew coffee", isFavorited: false } ]} textboxLayout="default" @@ -199,31 +167,16 @@ export default function HomePage() { tagAnimation="slide-up" testimonials={[ { - id: "1", - name: "Sarah Mitchell", - role: "Regular Customer", - company: "Local Business Owner", - rating: 5, - imageSrc: "https://img.b2bpic.net/free-photo/confident-beautiful-young-businesswoman-looking-camera-head-shot-portrait_1163-4928.jpg?_wi=1", - imageAlt: "Sarah Mitchell" + id: "1", name: "Sarah Mitchell", role: "Regular Customer", company: "Local Business Owner", rating: 5, + imageSrc: "https://img.b2bpic.net/free-photo/confident-beautiful-young-businesswoman-looking-camera-head-shot-portrait_1163-4928.jpg?_wi=1", imageAlt: "Sarah Mitchell" }, { - id: "2", - name: "James Chen", - role: "Coffee Enthusiast", - company: "Coffee Roasters Guild", - rating: 5, - imageSrc: "https://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1", - imageAlt: "James Chen" + id: "2", name: "James Chen", role: "Coffee Enthusiast", company: "Coffee Roasters Guild", rating: 5, + imageSrc: "https://img.b2bpic.net/free-photo/close-up-portrait-young-handsome-successful-man_1163-5475.jpg?_wi=1", imageAlt: "James Chen" }, { - id: "3", - name: "Emma Rodriguez", - role: "Barista", - company: "Specialty Coffee Association", - rating: 5, - imageSrc: "https://img.b2bpic.net/free-photo/positive-human-facial-expressions-emotions-cheerful-attractive-teenage-girl-with-bob-hairstyle-grinning-broadly-showing-her-perfect-white-teeth-while-spending-nice-time-indoors_273609-7385.jpg?_wi=1", - imageAlt: "Emma Rodriguez" + id: "3", name: "Emma Rodriguez", role: "Barista", company: "Specialty Coffee Association", rating: 5, + imageSrc: "https://img.b2bpic.net/free-photo/positive-human-facial-expressions-emotions-cheerful-attractive-teenage-girl-with-bob-hairstyle-grinning-broadly-showing-her-perfect-white-teeth-while-spending-nice-time-indoors_273609-7385.jpg?_wi=1", imageAlt: "Emma Rodriguez" } ]} kpiItems={[ @@ -245,8 +198,8 @@ export default function HomePage() { title="Ready for Your Perfect Cup?" description="Visit us today or order online for convenient delivery. We're here to serve you with the finest coffee experience." buttons={[ - { text: "Visit Our Cafe", href: "/locations" }, - { text: "Order Online", href: "/order" } + { text: "Order Now", href: "#" }, + { text: "Learn More", href: "#" } ]} buttonAnimation="slide-up" background={{ variant: "plain" }} @@ -257,34 +210,30 @@ export default function HomePage() {