3 Commits

Author SHA1 Message Date
d526fcee25 Update src/app/page.tsx 2026-04-26 20:31:45 +00:00
38a2574bfa Merge version_1 into main
Merge version_1 into main
2026-04-26 20:00:22 +00:00
f1af909d73 Merge version_1 into main
Merge version_1 into main
2026-04-26 19:59:51 +00:00

View File

@@ -29,9 +29,10 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Inicio", id: "#hero" },
{ name: "Inicio", id: "/" },
{ name: "Colección", id: "#products" },
{ name: "Calidad", id: "#about" },
{ name: "Tienda", id: "https://yideev-sg.myshopify.com/" },
{ name: "Contacto", id: "#contact" }
]}
brandName="Maison Veltrán"
@@ -44,7 +45,8 @@ export default function LandingPage() {
title="El lujo no se grita… se nota."
description="Descubre productos diseñados con precisión para elevar tu presencia sin gastar de más."
buttons={[
{ text: "Explorar colección", href: "#products" }
{ text: "Explorar colección", href: "#products" },
{ text: "Ir a la tienda", href: "https://yideev-sg.myshopify.com/" }
]}
carouselItems={[
{ id: "1", imageSrc: "http://img.b2bpic.net/free-photo/luxury-perfume-fragrance-bottle_116380-80.jpg", imageAlt: "Veltrán Noir Perfume" },
@@ -145,9 +147,10 @@ export default function LandingPage() {
columns={[
{
items: [
{ label: "Inicio", href: "#hero" },
{ label: "Inicio", href: "/" },
{ label: "Catálogo", href: "#products" },
{ label: "Nosotros", href: "#about" }
{ label: "Nosotros", href: "#about" },
{ label: "Tienda", href: "https://yideev-sg.myshopify.com/" }
]
},
{
@@ -164,4 +167,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}