7 Commits

Author SHA1 Message Date
010510df35 Update src/app/page.tsx 2026-03-22 10:13:57 +00:00
a74d5c4b82 Merge version_2 into main
Merge version_2 into main
2026-03-22 10:11:49 +00:00
41fc09b440 Update src/app/page.tsx 2026-03-22 10:11:39 +00:00
2d2e3ad5b7 Merge version_1 into main
Merge version_1 into main
2026-03-22 10:08:41 +00:00
2673941a93 Merge version_1 into main
Merge version_1 into main
2026-03-22 10:08:36 +00:00
b8fb2c4f5c Merge version_1 into main
Merge version_1 into main
2026-03-22 10:08:16 +00:00
e7fd99a411 Merge version_1 into main
Merge version_1 into main
2026-03-22 10:07:55 +00:00

View File

@@ -11,7 +11,7 @@ import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCar
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import ContactCTA from '@/components/sections/contact/ContactCTA'; import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { Award, HelpCircle, MessageSquare, Shield, Smartphone, Users, Wrench } from 'lucide-react'; import { Award, HelpCircle, MessageSquare, Shield, Smartphone, Users, Wrench, Package } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -34,6 +34,7 @@ export default function LandingPage() {
{ name: "Sobre Nosotros", id: "about" }, { name: "Sobre Nosotros", id: "about" },
{ name: "Servicios", id: "services" }, { name: "Servicios", id: "services" },
{ name: "Productos", id: "products" }, { name: "Productos", id: "products" },
{ name: "Accesorios", id: "accessories" },
{ name: "Contacto", id: "contact" } { name: "Contacto", id: "contact" }
]} ]}
brandName="Moovo" brandName="Moovo"
@@ -131,7 +132,39 @@ export default function LandingPage() {
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
buttons={[ buttons={[
{ text: "Ver Catálogo Completo", href: "#contact" } { text: "Comprar Ahora", href: "#contact" }
]}
buttonAnimation="slide-up"
/>
</div>
<div id="accessories" data-section="accessories">
<ProductCardOne
title="Accesorios Móviles"
description="Protege y potencia tu dispositivo con nuestra selección de accesorios de calidad: fundas, protectores de pantalla, cargadores y más."
tag="Protección y Accesorios"
tagIcon={Package}
tagAnimation="slide-up"
products={[
{
id: "case-premium", name: "Funda Premium Resistente", price: "29,99€", imageSrc: "http://img.b2bpic.net/free-vector/mobile-phones-shiny-background_1035-46.jpg?_wi=6", imageAlt: "Funda Premium Resistente"
},
{
id: "screen-protector", name: "Protector de Pantalla Templado", price: "14,99€", imageSrc: "http://img.b2bpic.net/free-vector/mobile-phones-shiny-background_1035-46.jpg?_wi=7", imageAlt: "Protector de Pantalla Templado"
},
{
id: "charger-fast", name: "Cargador Rápido USB-C 65W", price: "39,99€", imageSrc: "http://img.b2bpic.net/free-vector/mobile-phones-shiny-background_1035-46.jpg?_wi=8", imageAlt: "Cargador Rápido USB-C 65W"
},
{
id: "power-bank", name: "Power Bank 20000mAh", price: "44,99€", imageSrc: "http://img.b2bpic.net/free-vector/mobile-phones-shiny-background_1035-46.jpg?_wi=9", imageAlt: "Power Bank 20000mAh"
}
]}
gridVariant="two-columns-alternating-heights"
animationType="blur-reveal"
textboxLayout="default"
useInvertedBackground={false}
buttons={[
{ text: "Ver Más Accesorios", href: "#contact" }
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
/> />