6 Commits

Author SHA1 Message Date
218f8fd07b Merge version_3 into main
Merge version_3 into main
2026-04-05 06:25:39 +00:00
117ff93702 Update src/app/page.tsx 2026-04-05 06:25:36 +00:00
f4e4ef5882 Merge version_2 into main
Merge version_2 into main
2026-04-05 06:22:48 +00:00
16617a6d6c Update src/app/page.tsx 2026-04-05 06:22:45 +00:00
49eb656436 Merge version_2 into main
Merge version_2 into main
2026-04-05 06:22:24 +00:00
3935618d10 Update src/app/page.tsx 2026-04-05 06:22:18 +00:00

View File

@@ -47,7 +47,7 @@ export default function LandingPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboardCarousel <HeroBillboardCarousel
title="Premium Handcrafted Charcuterie" title="Premium Handcrafted Charcuterie"
description="Elevate your table with our artisanal selection of cured meats. From hickory-smoked sausage to pepper-crusted ham, we bring traditional curing techniques to your kitchen." description="Elevate your table with our artisanal selection of cured meats. Delivered fresh to your doorstep, we bring traditional curing techniques to your kitchen."
tag="Artisan Cured" tag="Artisan Cured"
tagIcon={ShoppingBasket} tagIcon={ShoppingBasket}
background={{ variant: "plain" }} background={{ variant: "plain" }}
@@ -57,9 +57,9 @@ export default function LandingPage() {
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
mediaItems={[ mediaItems={[
{ imageSrc: "http://img.b2bpic.net/free-photo/smoked-sliced-sausages-white-plate_114579-62176.jpg", imageAlt: "Handcrafted artisan sausages" }, { imageSrc: "http://img.b2bpic.net/free-photo/smoked-sliced-sausages-white-plate_114579-62176.jpg?_wi=1", imageAlt: "Handcrafted artisan sausages" },
{ imageSrc: "http://img.b2bpic.net/free-photo/grissini-bread-sticks-with-prosciutto_2829-16580.jpg", imageAlt: "Premium cured ham selection" }, { imageSrc: "http://img.b2bpic.net/free-photo/grissini-bread-sticks-with-prosciutto_2829-16580.jpg?_wi=1", imageAlt: "Premium cured ham selection" },
{ imageSrc: "http://img.b2bpic.net/free-photo/fuetdry-cured-fuet-sausage-isolated-white-background_123827-33359.jpg", imageAlt: "Spicy artisanal pepperoni" }, { imageSrc: "http://img.b2bpic.net/free-photo/fuetdry-cured-fuet-sausage-isolated-white-background_123827-33359.jpg?_wi=1", imageAlt: "Spicy artisanal pepperoni" },
{ imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-fresh-meat-concept_23-2148738908.jpg", imageAlt: "Charcuterie board assortment" } { imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-fresh-meat-concept_23-2148738908.jpg", imageAlt: "Charcuterie board assortment" }
]} ]}
/> />
@@ -92,15 +92,15 @@ export default function LandingPage() {
products={[ products={[
{ {
id: "1", brand: "Artisan", name: "Hickory Smoked Sausage", price: "$18", rating: 5, id: "1", brand: "Artisan", name: "Hickory Smoked Sausage", price: "$18", rating: 5,
reviewCount: "150", imageSrc: "http://img.b2bpic.net/free-photo/flat-lay-beer-bottles-with-sausages_23-2148754976.jpg", imageAlt: "Hickory smoked sausage" reviewCount: "150", imageSrc: "http://img.b2bpic.net/free-photo/smoked-sliced-sausages-white-plate_114579-62176.jpg?_wi=2", imageAlt: "Hickory smoked sausage"
}, },
{ {
id: "2", brand: "Artisan", name: "Cured Country Ham", price: "$24", rating: 5, id: "2", brand: "Artisan", name: "Aged Cured Ham", price: "$24", rating: 5,
reviewCount: "210", imageSrc: "http://img.b2bpic.net/free-photo/bottom-view-meat-slices-cut-pomegranate-cutting-board-grey-background-copy-space_140725-108148.jpg", imageAlt: "Thinly sliced cured ham" reviewCount: "210", imageSrc: "http://img.b2bpic.net/free-photo/grissini-bread-sticks-with-prosciutto_2829-16580.jpg?_wi=2", imageAlt: "Cured ham selection"
}, },
{ {
id: "3", brand: "Artisan", name: "Spicy Pepperoni", price: "$15", rating: 4, id: "3", brand: "Artisan", name: "Spicy Pepperoni", price: "$15", rating: 4,
reviewCount: "185", imageSrc: "http://img.b2bpic.net/free-photo/turkish-delight-rahat-lokum-with-pistachios-blue-wooden-board_114579-59080.jpg", imageAlt: "Spicy salami style pepperoni" reviewCount: "185", imageSrc: "http://img.b2bpic.net/free-photo/fuetdry-cured-fuet-sausage-isolated-white-background_123827-33359.jpg?_wi=2", imageAlt: "Spicy artisanal pepperoni"
} }
]} ]}
gridVariant="three-columns-all-equal-width" gridVariant="three-columns-all-equal-width"
@@ -219,4 +219,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }