Merge version_3 into main

Merge version_3 into main
This commit was merged in pull request #3.
This commit is contained in:
2026-06-03 06:20:19 +00:00

View File

@@ -8,6 +8,7 @@ import FeatureCardTwentySix from '@/components/sections/feature/FeatureCardTwent
import FooterCard from '@/components/sections/footer/FooterCard';
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import SplitAbout from '@/components/sections/about/SplitAbout';
@@ -36,6 +37,8 @@ export default function LandingPage() {
name: "Home", id: "#home"},
{
name: "About", id: "#about"},
{
name: "Products", id: "#products"},
{
name: "Testimonials", id: "#testimonials"},
{
@@ -127,6 +130,37 @@ export default function LandingPage() {
/>
</div>
<div id="products" data-section="products">
<ProductCardOne
textboxLayout="default"
useInvertedBackground={false}
gridVariant="uniform-all-items-equal"
animationType="blur-reveal"
title="Our Bestsellers"
description="Explore our top-selling products, beloved by customers for their quality, design, and exceptional value."
products={[
{
id: "1", name: "Luxury Ceramic Vase", price: "$75.00", imageSrc: "http://img.b2bpic.net/free-photo/flower-decoration-table-dinner_1203-2479.jpg", imageAlt: "Luxury Ceramic Vase"
},
{
id: "2", name: "Premium Leather Wallet", price: "$45.00", imageSrc: "http://img.b2bpic.net/free-photo/leather-wallet_1203-2715.jpg", imageAlt: "Premium Leather Wallet"
},
{
id: "3", name: "Eco-Friendly Travel Mug", price: "$25.00", imageSrc: "http://img.b2bpic.net/free-photo/white-travel-mug_1203-2703.jpg", imageAlt: "Eco-Friendly Travel Mug"
},
{
id: "4", name: "Wireless Noise-Cancelling Earbuds", price: "$120.00", imageSrc: "http://img.b2bpic.net/free-photo/wireless-earbuds_1203-2708.jpg", imageAlt: "Wireless Noise-Cancelling Earbuds"
},
{
id: "5", name: "Organic Cotton T-Shirt", price: "$30.00", imageSrc: "http://img.b2bpic.net/free-photo/white-t-shirt_1203-2696.jpg", imageAlt: "Organic Cotton T-Shirt"
},
{
id: "6", name: "Handcrafted Wooden Clock", price: "$90.00", imageSrc: "http://img.b2bpic.net/free-photo/wooden-clock_1203-2719.jpg", imageAlt: "Handcrafted Wooden Clock"
}
]}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFive
textboxLayout="default"
@@ -205,4 +239,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}