From 98334d46748b9a746dfc408c0880063d400fa3c9 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 30 Apr 2026 14:31:55 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 342 +++++++++-------------------------------------- 1 file changed, 60 insertions(+), 282 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 14e03c2..9c498a9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,17 +2,17 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactText from '@/components/sections/contact/ContactText'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNineteen'; -import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import FooterBase from '@/components/sections/footer/FooterBase'; import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo'; -import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; +import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; import PricingCardFive from '@/components/sections/pricing/PricingCardFive'; import ProductCardFour from '@/components/sections/product/ProductCardFour'; import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; -import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; -import { MessageCircle, Shield, Star, Truck } from "lucide-react"; +import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; +import { Shield, Star, Truck, Heart } from "lucide-react"; export default function LandingPage() { return ( @@ -32,28 +32,13 @@ export default function LandingPage() { @@ -61,37 +46,10 @@ export default function LandingPage() { @@ -101,30 +59,12 @@ export default function LandingPage() { textboxLayout="split" useInvertedBackground={false} features={[ - { - tag: "Cool", - title: "Figuras", - subtitle: "Alta calidad", - description: "Coleccionables detallados.", - imageSrc: "http://img.b2bpic.net/free-photo/3d-cartoon-character-djing-party_23-2151688517.jpg", - }, - { - tag: "Style", - title: "Ropa", - subtitle: "Streetwear", - description: "Diseños exclusivos.", - imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-night-city-with-young-person_23-2149124040.jpg", - }, - { - tag: "Access", - title: "Accesorios", - subtitle: "Geek Gear", - description: "Mejora tu setup.", - imageSrc: "http://img.b2bpic.net/free-photo/set-smartphone-near-notebook-male-accessories_23-2148067777.jpg", - }, + { tag: "Calidad", title: "Figuras", subtitle: "Premium", description: "Coleccionables detallados con certificación oficial.", imageSrc: "http://img.b2bpic.net/free-photo/3d-cartoon-character-djing-party_23-2151688517.jpg" }, + { tag: "Exclusivo", title: "Ropa", subtitle: "Edición Limitada", description: "Diseños únicos colaborativos con artistas.", imageSrc: "http://img.b2bpic.net/free-photo/lifestyle-night-city-with-young-person_23-2149124040.jpg" }, + { tag: "Pro", title: "Setup", subtitle: "Geek Gear", description: "Periféricos y decoración para tu espacio.", imageSrc: "http://img.b2bpic.net/free-photo/set-smartphone-near-notebook-male-accessories_23-2148067777.jpg" }, ]} title="Nuestras Categorías" - description="Explora todo nuestro catálogo geek." + description="Eleva tu colección al siguiente nivel." /> @@ -135,251 +75,89 @@ export default function LandingPage() { gridVariant="four-items-2x2-equal-grid" useInvertedBackground={false} products={[ - { - id: "1", - name: "Figura Limitada", - price: "$89", - variant: "Edición limitada", - imageSrc: "http://img.b2bpic.net/free-photo/anime-girl-skeleton-costume-with-candles_23-2152013218.jpg", - }, - { - id: "2", - name: "Peluche Chibi", - price: "$25", - variant: "Nuevo", - imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-kawaii-girl-illustration_23-2149659176.jpg", - }, - { - id: "3", - name: "Camiseta Grafica", - price: "$35", - variant: "Hot", - imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-asian-cartoon-character-illustration_52683-145667.jpg", - }, - { - id: "4", - name: "Skin Gamer", - price: "$15", - variant: "Exclusivo", - imageSrc: "http://img.b2bpic.net/free-photo/gradient-illuminated-neon-gaming-desk-setup-with-keyboard_23-2149529411.jpg", - }, - { - id: "5", - name: "Keycaps Anime", - price: "$45", - variant: "Hot", - imageSrc: "http://img.b2bpic.net/free-photo/minimalist-computer-desk-setup-with-hard-drive_58702-17215.jpg", - }, - { - id: "6", - name: "Poster 3D", - price: "$20", - variant: "Nuevo", - imageSrc: "http://img.b2bpic.net/free-photo/anime-photographer-nature_23-2152020077.jpg", - }, + { id: "1", name: "Figura Limitada", price: "$89", variant: "Edición coleccionista", imageSrc: "http://img.b2bpic.net/free-photo/anime-girl-skeleton-costume-with-candles_23-2152013218.jpg" }, + { id: "2", name: "Peluche Chibi", price: "$25", variant: "Stock limitado", imageSrc: "http://img.b2bpic.net/free-vector/hand-drawn-kawaii-girl-illustration_23-2149659176.jpg" }, ]} - title="Productos Destacados" - description="Lo último del momento." + title="Lo Más Buscado" + description="Productos favoritos por la comunidad gamer." />
-
-
-
-- 2.49.1