Merge version_1 into main #2
232
src/app/page.tsx
232
src/app/page.tsx
@@ -30,18 +30,9 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Inicio",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Productos",
|
||||
id: "products",
|
||||
},
|
||||
{
|
||||
name: "Contacto",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Inicio", id: "hero" },
|
||||
{ name: "Productos", id: "products" },
|
||||
{ name: "Contacto", id: "contact" },
|
||||
]}
|
||||
brandName="Electro Up"
|
||||
/>
|
||||
@@ -49,66 +40,28 @@ export default function LandingPage() {
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroBillboard
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
title="Electrodomésticos en San Miguel al mejor precio"
|
||||
description="Tecnología y hogar con atención confiable. Todo para equipar tu casa con calidad y respaldo local."
|
||||
buttons={[
|
||||
{
|
||||
text: "Ver productos",
|
||||
href: "#products",
|
||||
},
|
||||
{
|
||||
text: "Contactar por WhatsApp",
|
||||
href: "https://wa.me/541164770277",
|
||||
},
|
||||
{ text: "Ver productos", href: "#products" },
|
||||
{ text: "Contactar por WhatsApp", href: "https://wa.me/541164770277" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/modern-kitchen-interior-design_23-2151821302.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/modern-kitchen-interior-design_23-2151821302.jpg"
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/tv-nature-concept_23-2150246085.jpg",
|
||||
alt: "Cliente 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/delicious-3d-coffee-drink_23-2151840636.jpg",
|
||||
alt: "Cliente 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/washing-dryer-machine-inside-view-drum_169016-12825.jpg",
|
||||
alt: "Cliente 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/minimalist-indoors-white-wall-with-vent-space_23-2148801257.jpg",
|
||||
alt: "Cliente 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-woman-kitchen-eating-berries-using-laptop-happy-female-looking-laptop-while-standing-kitchen-morning_231208-688.jpg",
|
||||
alt: "Cliente 5",
|
||||
},
|
||||
{ src: "http://img.b2bpic.net/free-photo/tv-nature-concept_23-2150246085.jpg", alt: "Cliente 1" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/delicious-3d-coffee-drink_23-2151840636.jpg", alt: "Cliente 2" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/washing-dryer-machine-inside-view-drum_169016-12825.jpg", alt: "Cliente 3" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/minimalist-indoors-white-wall-with-vent-space_23-2148801257.jpg", alt: "Cliente 4" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/young-woman-kitchen-eating-berries-using-laptop-happy-female-looking-laptop-while-standing-kitchen-morning_231208-688.jpg", alt: "Cliente 5" },
|
||||
]}
|
||||
avatarText="Más de 500 clientes satisfechos en San Miguel"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Smart TVs 4K",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Heladeras Inverter",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Lavarropas",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Aires Acondicionados",
|
||||
},
|
||||
{
|
||||
type: "text",
|
||||
text: "Cocinas",
|
||||
},
|
||||
{ type: "text", text: "Smart TVs 4K" },
|
||||
{ type: "text", text: "Heladeras Inverter" },
|
||||
{ type: "text", text: "Lavarropas" },
|
||||
{ type: "text", text: "Aires Acondicionados" },
|
||||
{ type: "text", text: "Cocinas" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -120,21 +73,12 @@ export default function LandingPage() {
|
||||
title="Sobre Electro Up"
|
||||
description="Somos una tienda local en San Miguel dedicada a ofrecer electrodomésticos y productos para el hogar con atención personalizada y precios accesibles. Nos enfocamos en brindar soluciones tecnológicas para tu familia con el mejor respaldo y confianza en la zona."
|
||||
bulletPoints={[
|
||||
{
|
||||
title: "Atención personalizada",
|
||||
description: "Te ayudamos a elegir lo mejor para vos.",
|
||||
},
|
||||
{
|
||||
title: "Precios accesibles",
|
||||
description: "Las mejores marcas con financiación.",
|
||||
},
|
||||
{
|
||||
title: "Ubicación céntrica",
|
||||
description: "Estamos en Av. Dr. Ricardo Balbín 3933.",
|
||||
},
|
||||
{ title: "Atención personalizada", description: "Te ayudamos a elegir lo mejor para vos." },
|
||||
{ title: "Precios accesibles", description: "Las mejores marcas con financiación." },
|
||||
{ title: "Ubicación céntrica", description: "Estamos en Av. Dr. Ricardo Balbín 3933." },
|
||||
]}
|
||||
mediaAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/modern-kitchen-interior-design_23-2151821302.jpg?_wi=2"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/modern-kitchen-interior-design_23-2151821302.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -145,42 +89,12 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Smart TV 32”",
|
||||
price: "$280.000 ARS",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tv-nature-concept_23-2150246085.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Smart TV 50”",
|
||||
price: "$520.000 ARS",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tv-nature-concept_23-2150246085.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Heladera con freezer",
|
||||
price: "$780.000 ARS",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-3d-coffee-drink_23-2151840636.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Lavarropas Inverter",
|
||||
price: "$800.000 ARS",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/washing-dryer-machine-inside-view-drum_169016-12825.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Aire Acondicionado 3000f",
|
||||
price: "$850.000 ARS",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/minimalist-indoors-white-wall-with-vent-space_23-2148801257.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Cocina a gas",
|
||||
price: "$400.000 ARS",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-kitchen-eating-berries-using-laptop-happy-female-looking-laptop-while-standing-kitchen-morning_231208-688.jpg?_wi=1",
|
||||
},
|
||||
{ id: "1", name: "Smart TV 32”", price: "$280.000 ARS", imageSrc: "http://img.b2bpic.net/free-photo/tv-nature-concept_23-2150246085.jpg" },
|
||||
{ id: "2", name: "Smart TV 50”", price: "$520.000 ARS", imageSrc: "http://img.b2bpic.net/free-photo/tv-nature-concept_23-2150246085.jpg" },
|
||||
{ id: "3", name: "Heladera con freezer", price: "$780.000 ARS", imageSrc: "http://img.b2bpic.net/free-photo/delicious-3d-coffee-drink_23-2151840636.jpg" },
|
||||
{ id: "4", name: "Lavarropas Inverter", price: "$800.000 ARS", imageSrc: "http://img.b2bpic.net/free-photo/washing-dryer-machine-inside-view-drum_169016-12825.jpg" },
|
||||
{ id: "5", name: "Aire Acondicionado 3000f", price: "$850.000 ARS", imageSrc: "http://img.b2bpic.net/free-photo/minimalist-indoors-white-wall-with-vent-space_23-2148801257.jpg" },
|
||||
{ id: "6", name: "Cocina a gas", price: "$400.000 ARS", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-kitchen-eating-berries-using-laptop-happy-female-looking-laptop-while-standing-kitchen-morning_231208-688.jpg" },
|
||||
]}
|
||||
title="Nuestro Catálogo"
|
||||
description="Todo lo que necesitas para tu hogar: televisores, heladeras, lavarropas y más."
|
||||
@@ -194,28 +108,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Venta y Asesoramiento",
|
||||
description: "Expertos en electrodomésticos para tu hogar.",
|
||||
media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-stirring-torned-paper-blender_23-2147845597.jpg",
|
||||
title: "Venta y Asesoramiento", description: "Expertos en electrodomésticos para tu hogar.", media: {
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-kitchen-interior-design_23-2151821302.jpg", imageAlt: "electronics retail store"
|
||||
},
|
||||
items: [
|
||||
{
|
||||
icon: CheckCircle,
|
||||
text: "Atención personalizada",
|
||||
},
|
||||
{
|
||||
icon: CheckCircle,
|
||||
text: "Precios competitivos",
|
||||
},
|
||||
{
|
||||
icon: CheckCircle,
|
||||
text: "Garantía oficial",
|
||||
},
|
||||
{ icon: CheckCircle, text: "Atención personalizada" },
|
||||
{ icon: CheckCircle, text: "Precios competitivos" },
|
||||
{ icon: CheckCircle, text: "Garantía oficial" },
|
||||
],
|
||||
reverse: false,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/modern-kitchen-interior-design_23-2151821302.jpg?_wi=3",
|
||||
imageAlt: "electronics retail store",
|
||||
},
|
||||
]}
|
||||
title="Nuestros Servicios"
|
||||
@@ -228,51 +129,11 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
title: "Excelente",
|
||||
quote: "Muy buena atención y asesoramiento.",
|
||||
name: "Ana García",
|
||||
role: "Cliente",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/tv-nature-concept_23-2150246085.jpg?_wi=3",
|
||||
imageAlt: "smart tv display",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
title: "Muy buenos",
|
||||
quote: "Precios accesibles y buena variedad.",
|
||||
name: "Juan Perez",
|
||||
role: "Cliente",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-3d-coffee-drink_23-2151840636.jpg?_wi=2",
|
||||
imageAlt: "stainless steel refrigerator",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
title: "Recomendable",
|
||||
quote: "Atención rápida y confiable.",
|
||||
name: "Carlos Lopez",
|
||||
role: "Cliente",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/washing-dryer-machine-inside-view-drum_169016-12825.jpg?_wi=2",
|
||||
imageAlt: "washing machine laundry",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
title: "Contento",
|
||||
quote: "Buen trato en el local.",
|
||||
name: "Maria Diaz",
|
||||
role: "Cliente",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/minimalist-indoors-white-wall-with-vent-space_23-2148801257.jpg?_wi=2",
|
||||
imageAlt: "split air conditioner",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
title: "Excelente",
|
||||
quote: "Excelente servicio, volveré.",
|
||||
name: "Sofia Gomez",
|
||||
role: "Cliente",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-woman-kitchen-eating-berries-using-laptop-happy-female-looking-laptop-while-standing-kitchen-morning_231208-688.jpg?_wi=2",
|
||||
imageAlt: "modern gas stove kitchen",
|
||||
},
|
||||
{ id: "1", title: "Excelente", quote: "Muy buena atención y asesoramiento.", name: "Ana García", role: "Cliente", imageSrc: "http://img.b2bpic.net/free-photo/tv-nature-concept_23-2150246085.jpg" },
|
||||
{ id: "2", title: "Muy buenos", quote: "Precios accesibles y buena variedad.", name: "Juan Perez", role: "Cliente", imageSrc: "http://img.b2bpic.net/free-photo/delicious-3d-coffee-drink_23-2151840636.jpg" },
|
||||
{ id: "3", title: "Recomendable", quote: "Atención rápida y confiable.", name: "Carlos Lopez", role: "Cliente", imageSrc: "http://img.b2bpic.net/free-photo/washing-dryer-machine-inside-view-drum_169016-12825.jpg" },
|
||||
{ id: "4", title: "Contento", quote: "Buen trato en el local.", name: "Maria Diaz", role: "Cliente", imageSrc: "http://img.b2bpic.net/free-photo/minimalist-indoors-white-wall-with-vent-space_23-2148801257.jpg" },
|
||||
{ id: "5", title: "Excelente", quote: "Excelente servicio, volveré.", name: "Sofia Gomez", role: "Cliente", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-kitchen-eating-berries-using-laptop-happy-female-looking-laptop-while-standing-kitchen-morning_231208-688.jpg" },
|
||||
]}
|
||||
title="Lo que dicen nuestros clientes"
|
||||
description="La confianza de quienes ya eligieron Electro Up."
|
||||
@@ -282,17 +143,12 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCTA
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
background={{ variant: "plain" }}
|
||||
tag="Contacto"
|
||||
title="¡Visitanos en San Miguel!"
|
||||
description="Av. Dr. Ricardo Balbín 3933, San Miguel, Argentina. Tel: +54 11 6477-0277"
|
||||
buttons={[
|
||||
{
|
||||
text: "Contactar por WhatsApp",
|
||||
href: "https://wa.me/541164770277",
|
||||
},
|
||||
{ text: "Contactar por WhatsApp", href: "https://wa.me/541164770277" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -300,14 +156,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="Electro Up"
|
||||
leftLink={{
|
||||
text: "© 2024 Electro Up",
|
||||
href: "#",
|
||||
}}
|
||||
rightLink={{
|
||||
text: "Políticas de Privacidad",
|
||||
href: "#",
|
||||
}}
|
||||
leftLink={{ text: "© 2024 Electro Up", href: "#" }}
|
||||
rightLink={{ text: "Políticas de Privacidad", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user