Merge version_2 into main #4

Merged
bender merged 1 commits from version_2 into main 2026-04-08 15:11:34 +00:00

View File

@@ -7,7 +7,7 @@ import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwen
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import ProductCardFour from '@/components/ecommerce/productCatalog/ProductCatalog';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import TextAbout from '@/components/sections/about/TextAbout';
@@ -96,21 +96,14 @@ export default function LandingPage() {
</div>
<div id="products" data-section="products">
<ProductCardOne
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={true}
<ProductCardFour
layout="section"
products={[
{ id: "p1", name: "Gold Truffle Box", price: "$45", imageSrc: "http://img.b2bpic.net/free-photo/assorted-chocolate-sweets-shape-heart_651396-1575.jpg?_wi=2" },
{ id: "p2", name: "Dark Forest Bar", price: "$12", imageSrc: "http://img.b2bpic.net/free-photo/top-view-creative-chocolate-arrangement-dark-background_23-2148549342.jpg?_wi=2" },
{ id: "p3", name: "Hazelnut Truffle", price: "$15", imageSrc: "http://img.b2bpic.net/free-photo/freshly-picked-black-truffles-market-table-with-very-fancy-decoration_573717-71.jpg?_wi=2" },
{ id: "p4", name: "Caramel Swirl", price: "$18", imageSrc: "http://img.b2bpic.net/free-photo/swirled-chocolate-texture_23-2151988793.jpg" },
{ id: "p5", name: "Heart Box", price: "$60", imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-sweets-biscuits-cookies-candies-inside-heart-shaped-box-white-background-sugar-tea-sweet-yummy-cake_140725-108983.jpg" },
{ id: "p6", name: "Ganache Set", price: "$35", imageSrc: "http://img.b2bpic.net/free-photo/handmade-chocolate-mediants-cookies-bites-candies-nuts-copyspace-top-view_114579-4839.jpg" }
{ id: "p1", name: "Gold Truffle Box", price: "$45", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/assorted-chocolate-sweets-shape-heart_651396-1575.jpg?_wi=2" },
{ id: "p2", name: "Dark Forest Bar", price: "$12", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/top-view-creative-chocolate-arrangement-dark-background_23-2148549342.jpg?_wi=2" },
{ id: "p3", name: "Hazelnut Truffle", price: "$15", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/freshly-picked-black-truffles-market-table-with-very-fancy-decoration_573717-71.jpg?_wi=2" },
{ id: "p4", name: "Caramel Swirl", price: "$18", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/swirled-chocolate-texture_23-2151988793.jpg" }
]}
title="Our Signature Collection"
description="Explore our curated range of artisanal delights."
/>
</div>
@@ -156,4 +149,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}