Update src/app/page.tsx

This commit is contained in:
2026-06-02 18:37:48 +00:00
parent 7ffea1b1dd
commit 33b38eefc5

View File

@@ -9,7 +9,7 @@ import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwent
import FooterBase from '@/components/sections/footer/FooterBase';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import ProductCardThree from '@/components/sections/product/ProductCardThree';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import SplitAbout from '@/components/sections/about/SplitAbout';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
@@ -88,17 +88,18 @@ export default function LandingPage() {
</div>
<div id="products" data-section="products">
<ProductCardThree
<ProductCardTwo
carouselMode="buttons"
animationType="slide-up"
textboxLayout="default"
gridVariant="three-columns-all-equal-width"
useInvertedBackground={true}
products={[
{ id: "p1", name: "Victorian Candlestick", price: "$120.00", imageSrc: "http://img.b2bpic.net/free-photo/vintage-chandelier-two-positions-white-background-studio-photo-vintage-retro-old-fashioned-style-candle-holder_482257-33029.jpg" },
{ id: "p2", name: "Velvet Raven Cushion", price: "$45.00", imageSrc: "http://img.b2bpic.net/free-photo/garlic-with-twigs-near-frame_23-2147694973.jpg" },
{ id: "p3", name: "Ornate Bone Frame", price: "$80.00", imageSrc: "http://img.b2bpic.net/free-vector/rectangular-ornamental-frame-black-background_1115-649.jpg" },
{ id: "p4", name: "Glazed Crypt Jar", price: "$60.00", imageSrc: "http://img.b2bpic.net/free-photo/vintage-antique-ancient-kettle-marble-background_114579-46793.jpg" },
{ id: "p5", name: "Obsidian Figurine", price: "$95.00", imageSrc: "http://img.b2bpic.net/free-photo/witch-hand-with-long-nails_23-2147680165.jpg" }
{ id: "p1", brand: "Sinister Sisters", name: "Victorian Candlestick", price: "$120.00", rating: 5, reviewCount: "12 reviews", imageSrc: "http://img.b2bpic.net/free-photo/vintage-chandelier-two-positions-white-background-studio-photo-vintage-retro-old-fashioned-style-candle-holder_482257-33029.jpg", imageAlt: "Victorian Candlestick" },
{ id: "p2", brand: "Sinister Sisters", name: "Velvet Raven Cushion", price: "$45.00", rating: 5, reviewCount: "8 reviews", imageSrc: "http://img.b2bpic.net/free-photo/garlic-with-twigs-near-frame_23-2147694973.jpg", imageAlt: "Velvet Raven Cushion" },
{ id: "p3", brand: "Sinister Sisters", name: "Ornate Bone Frame", price: "$80.00", rating: 5, reviewCount: "15 reviews", imageSrc: "http://img.b2bpic.net/free-vector/rectangular-ornamental-frame-black-background_1115-649.jpg", imageAlt: "Ornate Bone Frame" },
{ id: "p4", brand: "Sinister Sisters", name: "Glazed Crypt Jar", price: "$60.00", rating: 5, reviewCount: "7 reviews", imageSrc: "http://img.b2bpic.net/free-photo/vintage-antique-ancient-kettle-marble-background_114579-46793.jpg", imageAlt: "Glazed Crypt Jar" },
{ id: "p5", brand: "Sinister Sisters", name: "Obsidian Figurine", price: "$95.00", rating: 5, reviewCount: "10 reviews", imageSrc: "http://img.b2bpic.net/free-photo/witch-hand-with-long-nails_23-2147680165.jpg", imageAlt: "Obsidian Figurine" }
]}
title="Curated Collections"
description="Explore our current selection of rare finds and bespoke gothic creations. Shop our curated dark decor pieces to find your next statement piece."
@@ -162,4 +163,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}