Merge version_3 into main #3

Merged
bender merged 1 commits from version_3 into main 2026-04-18 17:04:46 +00:00

View File

@@ -8,7 +8,7 @@ import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import ProductCardThree from '@/components/ecommerce/productCatalog/ProductCatalogItem';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
@@ -88,27 +88,18 @@ export default function LandingPage() {
</div>
<div id="products" data-section="products">
<ProductCardOne
<ProductCardThree
animationType="slide-up"
textboxLayout="default"
gridVariant="uniform-all-items-equal"
useInvertedBackground={true}
products={[
{
id: "p1", name: "Emerald Stealth", price: "$45", imageSrc: "http://img.b2bpic.net/free-photo/universal-cables-gadgets-neon-charging-data_169016-71502.jpg"},
{
id: "p2", name: "Cloud Pro Pod", price: "$38", imageSrc: "http://img.b2bpic.net/free-photo/hookah-still-life-arrangement_23-2149213276.jpg"},
{
id: "p3", name: "Shadow Stick", price: "$29", imageSrc: "http://img.b2bpic.net/free-photo/man-relaxing-by-vaping-from-hookah-bar_23-2149191875.jpg"},
{
id: "p4", name: "Titan Mod 2.0", price: "$89", imageSrc: "http://img.b2bpic.net/free-photo/man-vaping-electronic-cigarette_158595-3039.jpg"},
{
id: "p5", name: "Minimalist Pen", price: "$32", imageSrc: "http://img.b2bpic.net/free-photo/smoke-coming-out-from-miniature-green-dustbin_23-2147826722.jpg"},
{
id: "p6", name: "Aero Atomizer", price: "$55", imageSrc: "http://img.b2bpic.net/free-photo/shocked-adult-ill-caucasian-man-with-scarf-around-neck-wearing-winter-hat-holding-looking-different-medicine-packs-isolated-pink-wall-with-copy-space_141793-97348.jpg"},
]}
title="Lo más buscado"
description="Descubre nuestra selección estrella de dispositivos y esencias premium."
products={[
{ id: "p1", name: "Emerald Stealth", price: "$45", imageSrc: "http://img.b2bpic.net/free-photo/universal-cables-gadgets-neon-charging-data_169016-71502.jpg", rating: 5 },
{ id: "p2", name: "Cloud Pro Pod", price: "$38", imageSrc: "http://img.b2bpic.net/free-photo/hookah-still-life-arrangement_23-2149213276.jpg", rating: 4 },
{ id: "p3", name: "Shadow Stick", price: "$29", imageSrc: "http://img.b2bpic.net/free-photo/man-relaxing-by-vaping-from-hookah-bar_23-2149191875.jpg", rating: 5 },
]}
/>
</div>
@@ -201,4 +192,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}