Update src/app/page.tsx

This commit is contained in:
2026-03-10 15:20:06 +00:00
parent cbb1bf0d16
commit 3633f2f5a8

View File

@@ -29,10 +29,10 @@ export default function LandingPage() {
<NavbarLayoutFloatingOverlay
brandName="Brew Haven"
navItems={[
{ name: "Home", id: "home" },
{ name: "About", id: "about" },
{ name: "Menu", id: "products" },
{ name: "Contact", id: "contact" }
{ name: "Home", id: "/" },
{ name: "About", id: "#about" },
{ name: "Menu", id: "#products" },
{ name: "Contact", id: "#contact" }
]}
button={{
text: "Order Now", href: "#products"
@@ -50,10 +50,10 @@ export default function LandingPage() {
background={{ variant: "radial-gradient" }}
mediaItems={[
{
imageSrc: "http://img.b2bpic.net/free-photo/row-decorative-light-bulbs-hanging-cafe_181624-58119.jpg?_wi=1", imageAlt: "Espresso machine pouring specialty coffee"
imageSrc: "http://img.b2bpic.net/free-photo/row-decorative-light-bulbs-hanging-cafe_181624-58119.jpg", imageAlt: "Espresso machine pouring specialty coffee"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-barista-white-t-shirt-jeans-pouring-coffee-beans-into-modern-small-burr-grinder_346278-1114.jpg?_wi=1", imageAlt: "Latte art on premium coffee beverage"
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-barista-white-t-shirt-jeans-pouring-coffee-beans-into-modern-small-burr-grinder_346278-1114.jpg", imageAlt: "Latte art on premium coffee beverage"
},
{
imageSrc: "http://img.b2bpic.net/free-photo/delicious-organic-coffee-still-life_23-2151762445.jpg", imageAlt: "Coffee shop interior ambiance"
@@ -76,7 +76,7 @@ export default function LandingPage() {
tagAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={true}
imageSrc="http://img.b2bpic.net/free-photo/coffee-shop-small-business_23-2149196203.jpg?_wi=1"
imageSrc="http://img.b2bpic.net/free-photo/coffee-shop-small-business_23-2149196203.jpg"
imageAlt="Brew Haven coffee roasting operation"
imagePosition="right"
mediaAnimation="slide-up"
@@ -114,7 +114,7 @@ export default function LandingPage() {
id: "1", name: "Single Origin Espresso", price: "$18", imageSrc: "http://img.b2bpic.net/free-photo/side-view-barista-making-coffee-coffee-machine_23-2148522945.jpg", imageAlt: "Premium single origin espresso"
},
{
id: "2", name: "Silky Cappuccino", price: "$7", imageSrc: "http://img.b2bpic.net/free-photo/coffee-with-heart-pattern-wooden-background_1232-2090.jpg?_wi=1", imageAlt: "Signature cappuccino with latte art"
id: "2", name: "Silky Cappuccino", price: "$7", imageSrc: "http://img.b2bpic.net/free-photo/coffee-with-heart-pattern-wooden-background_1232-2090.jpg", imageAlt: "Signature cappuccino with latte art"
},
{
id: "3", name: "Cold Brew Concentrate", price: "$12", imageSrc: "http://img.b2bpic.net/free-photo/still-life-with-iced-coffee-beverage_23-2149648708.jpg", imageAlt: "Artisanal cold brew coffee"
@@ -142,19 +142,19 @@ export default function LandingPage() {
{
id: 1,
title: "Premium Sourcing", description: "Direct partnerships with specialty coffee farmers across Ethiopia, Colombia, and Indonesia for exceptional quality.", phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/row-decorative-light-bulbs-hanging-cafe_181624-58119.jpg?_wi=2"
imageSrc: "http://img.b2bpic.net/free-photo/row-decorative-light-bulbs-hanging-cafe_181624-58119.jpg"
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/coffee-shop-small-business_23-2149196203.jpg?_wi=2"
imageSrc: "http://img.b2bpic.net/free-photo/coffee-shop-small-business_23-2149196203.jpg"
}
},
{
id: 2,
title: "Expert Craftsmanship", description: "Every cup prepared by certified baristas using precision espresso machines and specialty brewing methods.", phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/coffee-with-heart-pattern-wooden-background_1232-2090.jpg?_wi=2"
imageSrc: "http://img.b2bpic.net/free-photo/coffee-with-heart-pattern-wooden-background_1232-2090.jpg"
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-barista-white-t-shirt-jeans-pouring-coffee-beans-into-modern-small-burr-grinder_346278-1114.jpg?_wi=2"
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-barista-white-t-shirt-jeans-pouring-coffee-beans-into-modern-small-burr-grinder_346278-1114.jpg"
}
}
]}