6 Commits

Author SHA1 Message Date
3b663d5513 Merge version_3 into main
Merge version_3 into main
2026-04-26 20:49:21 +00:00
849a5993cf Update src/app/page.tsx 2026-04-26 20:49:18 +00:00
b940afd789 Merge version_2 into main
Merge version_2 into main
2026-04-26 20:31:48 +00:00
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" },
@@ -72,7 +74,7 @@ export default function LandingPage() {
{ id: "p6", brand: "Veltrán", name: "Kit Classic & Diffuser", price: "$219.900 COP", rating: 5, reviewCount: "41", imageSrc: "http://img.b2bpic.net/free-photo/covid-party-with-mask-drink-high-angle_23-2149299870.jpg" }
]}
title="Selección Premium"
description="Artículos diseñados para destacar en cualquier entorno."
description="La alquimia del perfume Noir destila misterio; nuestros audífonos X ofrecen una fidelidad acústica superior; el cronógrafo Classic garantiza precisión cronométrica absoluta, y nuestro difusor LED optimiza la atmósfera con una dispersión molecular precisa. Eleva tu entorno con la ingeniería del estilo Veltrán."
/>
</div>
@@ -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>
);
}
}