Merge version_1 into main #3

Merged
bender merged 1 commits from version_1 into main 2026-04-06 15:04:43 +00:00

View File

@@ -23,89 +23,76 @@ export default function LandingPage() {
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Inicio", id: "/"},
{
name: "Tienda", id: "/tienda"},
{
name: "Sobre Nosotros", id: "/nosotros"},
{
name: "Contacto", id: "/contacto"},
]}
brandName="Delicatessen SMR"
/>
</div>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "Inicio", id: "/" },
{ name: "Tienda", id: "/tienda" },
{ name: "Sobre Nosotros", id: "/nosotros" },
{ name: "Contacto", id: "/contacto" },
]}
brandName="Delicatessen SMR"
/>
</div>
<div id="body-nosotros" data-section="body-nosotros">
<AboutMetric
useInvertedBackground={false}
title="Nuestra Historia de Sabor"
metrics={[
{
icon: Star,
label: "Años de pasión", value: "15+"},
{
icon: Users,
label: "Clientes felices", value: "5000+"},
{
icon: Award,
label: "Productos Premium", value: "500"},
]}
metricsAnimation="slide-up"
/>
</div>
<div id="body-nosotros" data-section="body-nosotros">
<AboutMetric
useInvertedBackground={false}
title="Nuestra Historia de Sabor"
metrics={[
{ icon: Star, label: "Años de pasión", value: "15+" },
{ icon: Users, label: "Clientes felices", value: "5000+" },
{ icon: Award, label: "Productos Premium", value: "500" },
]}
metricsAnimation="slide-up"
/>
</div>
<div id="team" data-section="team">
<TeamCardEleven
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Nuestro Equipo"
description="Los apasionados detrás de cada selección."
groups={[
{
id: "g1", groupTitle: "Fundadores", members: [
{
id: "m1", title: "Laura S.", subtitle: "CEO", detail: "Experta en productos artesanos.", imageSrc: "http://img.b2bpic.net/free-photo/back-view-woman-with-thermos-street_23-2147765400.jpg"},
{
id: "m2", title: "Miguel R.", subtitle: "CBO", detail: "Apasionado por la logística premium.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-chef-with-mask-preparing-dish_23-2148723308.jpg"},
],
imageSrc: "http://img.b2bpic.net/free-photo/bartender-looking-glass-red-wine_107420-65843.jpg", imageAlt: "sommelier portrait wine"},
]}
/>
</div>
<div id="team" data-section="team">
<TeamCardEleven
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
title="Nuestro Equipo"
description="Los apasionados detrás de cada selección."
groups={[
{
id: "g1", groupTitle: "Fundadores", members: [
{
id: "m1", title: "Laura S.", subtitle: "CEO", detail: "Experta en productos artesanos.", imageSrc: "http://img.b2bpic.net/free-photo/back-view-woman-with-thermos-street_23-2147765400.jpg"
},
{
id: "m2", title: "Miguel R.", subtitle: "CBO", detail: "Apasionado por la logística premium.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-chef-with-mask-preparing-dish_23-2148723308.jpg"
},
],
imageSrc: "http://img.b2bpic.net/free-photo/bartender-looking-glass-red-wine_107420-65843.jpg", imageAlt: "sommelier portrait wine"
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="Delicatessen SMR"
columns={[
{
title: "Tienda", items: [
{
label: "Jamones", href: "/tienda#jamones"},
{
label: "Quesos", href: "/tienda#quesos"},
{
label: "Vinos", href: "/tienda#vinos"},
],
},
{
title: "Legal", items: [
{
label: "Aviso Legal", href: "/legal"},
{
label: "Privacidad", href: "/privacidad"},
{
label: "Cookies", href: "/cookies"},
],
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="Delicatessen SMR"
columns={[
{
title: "Tienda", items: [
{ label: "Jamones", href: "/tienda#jamones" },
{ label: "Quesos", href: "/tienda#quesos" },
{ label: "Vinos", href: "/tienda#vinos" },
],
},
{
title: "Legal", items: [
{ label: "Aviso Legal", href: "/legal" },
{ label: "Privacidad", href: "/privacidad" },
{ label: "Cookies", href: "/cookies" },
],
},
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}