From a5f5301bdf1880dc1f522000dba05c045f703454 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 22:02:54 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 96 +++++++++++++++++++++++++++++------------------- 1 file changed, 59 insertions(+), 37 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index d33ca16..5f471e7 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -16,27 +16,27 @@ import { Wrench, Package, Star, CheckCircle, Award, HelpCircle } from 'lucide-re export default function HomePage() { const navItems = [ { name: "Inicio", id: "hero" }, - { name: "Productos", id: "products" }, - { name: "Sobre Nosotros", id: "about" }, - { name: "Contacto", id: "contact" }, - { name: "Reseñas", id: "reviews" }, + { name: "Productos", id: "featured-products" }, + { name: "Sobre Nosotros", id: "why-choose-us" }, + { name: "Contacto", id: "faq" }, + { name: "Reseñas", id: "testimonials" }, ]; const footerColumns = [ { title: "Empresa", items: [ { label: "Inicio", href: "#hero" }, - { label: "Sobre Nosotros", href: "#about" }, - { label: "Contacto", href: "#contact" }, - { label: "Reseñas", href: "#reviews" }, + { label: "Sobre Nosotros", href: "#why-choose-us" }, + { label: "Contacto", href: "#faq" }, + { label: "Reseñas", href: "#testimonials" }, ], }, { title: "Productos", items: [ - { label: "Todos los Productos", href: "/products" }, - { label: "Herramientas", href: "/products" }, - { label: "Materiales", href: "/products" }, - { label: "Ofertas Especiales", href: "/products" }, + { label: "Todos los Productos", href: "#featured-products" }, + { label: "Herramientas", href: "#featured-products" }, + { label: "Materiales", href: "#featured-products" }, + { label: "Ofertas Especiales", href: "#featured-products" }, ], }, { @@ -78,7 +78,7 @@ export default function HomePage() { tagAnimation="slide-up" background={{ variant: "sparkles-gradient" }} buttons={[ - { text: "Ver Productos", href: "/products" }, + { text: "Ver Productos", href: "featured-products" }, { text: "Contactar por WhatsApp", href: "https://wa.me/+5491234567890" }, ]} buttonAnimation="slide-up" @@ -91,7 +91,6 @@ export default function HomePage() { { imageSrc: "http://img.b2bpic.net/free-photo/arrangement-different-artisan-workshop-objects_23-2148970784.jpg", imageAlt: "Renovación de hogar" }, ]} className="w-full" - useInvertedBackground={false} /> @@ -99,7 +98,8 @@ export default function HomePage() {