2 Commits

Author SHA1 Message Date
3ab60605a2 Update src/app/page.tsx 2026-04-20 13:41:49 +00:00
fa1f3744d9 Merge version_2 into main
Merge version_2 into main
2026-04-20 13:38:17 +00:00

View File

@@ -21,10 +21,10 @@ export default function LandingPage() {
borderRadius="pill" borderRadius="pill"
contentWidth="medium" contentWidth="medium"
sizing="largeSizeMediumTitles" sizing="largeSizeMediumTitles"
background="grid" background="none"
cardStyle="gradient-bordered" cardStyle="solid"
primaryButtonStyle="diagonal-gradient" primaryButtonStyle="flat"
secondaryButtonStyle="radial-glow" secondaryButtonStyle="solid"
headingFontWeight="light" headingFontWeight="light"
> >
<ReactLenis root> <ReactLenis root>
@@ -32,21 +32,13 @@ export default function LandingPage() {
<NavbarStyleCentered <NavbarStyleCentered
navItems={[ navItems={[
{ {
name: "Início", name: "Início", id: "hero"},
id: "hero",
},
{ {
name: "Sobre Nós", name: "Sobre Nós", id: "about"},
id: "about",
},
{ {
name: "Ofertas", name: "Ofertas", id: "products"},
id: "products",
},
{ {
name: "Contato", name: "Contato", id: "contact"},
id: "contact",
},
]} ]}
brandName="Farmácia Economize" brandName="Farmácia Economize"
/> />
@@ -55,63 +47,40 @@ export default function LandingPage() {
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboard <HeroBillboard
background={{ background={{
variant: "sparkles-gradient", variant: "plain"}}
}}
title="Com você, por você, pra você! ❤️" title="Com você, por você, pra você! ❤️"
description="A Farmácia Economize Fernandópolis cuida de você com os melhores preços da região, entrega rápida e um atendimento que é nota 10." description="A Farmácia Economize Fernandópolis cuida de você com os melhores preços da região, entrega rápida e um atendimento que é nota 10."
buttons={[ buttons={[
{ {
text: "Peça agora pelo WhatsApp", text: "Peça agora pelo WhatsApp", href: "https://wa.me/551734650560"},
href: "https://wa.me/551734650560",
},
]} ]}
imageSrc="http://img.b2bpic.net/free-photo/medicine-pharmaceutics-health-care-people-concept-female-pharmacist-advises-buyer_1157-42173.jpg" imageSrc="http://img.b2bpic.net/free-photo/medicine-pharmaceutics-health-care-people-concept-female-pharmacist-advises-buyer_1157-42173.jpg"
imageAlt="Farmácia Economize equipe" imageAlt="Farmácia Economize equipe"
mediaAnimation="slide-up" mediaAnimation="slide-up"
avatars={[ avatars={[
{ {
src: "http://img.b2bpic.net/free-photo/medicine-pharmaceutics-health-care-people-concept-female-pharmacist-advises-buyer_1157-42170.jpg", src: "http://img.b2bpic.net/free-photo/medicine-pharmaceutics-health-care-people-concept-female-pharmacist-advises-buyer_1157-42170.jpg", alt: "Equipe de farmácia profissional"},
alt: "Equipe de farmácia profissional",
},
{ {
src: "http://img.b2bpic.net/free-photo/team-happy-doctors-standing-with-arms-crossed-mri-scanner-hospital-looking-camera_637285-389.jpg", src: "http://img.b2bpic.net/free-photo/team-happy-doctors-standing-with-arms-crossed-mri-scanner-hospital-looking-camera_637285-389.jpg", alt: "Atendimento especializado"},
alt: "Atendimento especializado",
},
{ {
src: "http://img.b2bpic.net/free-photo/male-expert-consulting-customer-regarding-body-care-products_259150-57978.jpg", src: "http://img.b2bpic.net/free-photo/male-expert-consulting-customer-regarding-body-care-products_259150-57978.jpg", alt: "Consultoria farmacêutica"},
alt: "Consultoria farmacêutica",
},
{ {
src: "http://img.b2bpic.net/free-photo/laboratory-laboratories-conduct-experiments-chemical-laboratory_146671-18153.jpg", src: "http://img.b2bpic.net/free-photo/laboratory-laboratories-conduct-experiments-chemical-laboratory_146671-18153.jpg", alt: "Farmácia moderna"},
alt: "Farmácia moderna",
},
{ {
src: "http://img.b2bpic.net/free-photo/man-woman-with-medical-masks-out-grocery-shopping-with-shopping-cart_23-2149483201.jpg", src: "http://img.b2bpic.net/free-photo/man-woman-with-medical-masks-out-grocery-shopping-with-shopping-cart_23-2149483201.jpg", alt: "Conveniência para clientes"},
alt: "Conveniência para clientes",
},
]} ]}
avatarText="Mais de 10.000 clientes satisfeitos" avatarText="Mais de 10.000 clientes satisfeitos"
marqueeItems={[ marqueeItems={[
{ {
type: "text", type: "text", text: "Melhores Preços"},
text: "Melhores Preços",
},
{ {
type: "text", type: "text", text: "Atendimento Humanizado"},
text: "Atendimento Humanizado",
},
{ {
type: "text", type: "text", text: "Entrega Expressa"},
text: "Entrega Expressa",
},
{ {
type: "text", type: "text", text: "Localização Privilegiada"},
text: "Localização Privilegiada",
},
{ {
type: "text", type: "text", text: "Qualidade Garantida"},
text: "Qualidade Garantida",
},
]} ]}
/> />
</div> </div>
@@ -123,24 +92,16 @@ export default function LandingPage() {
metrics={[ metrics={[
{ {
icon: Star, icon: Star,
label: "Google Rating", label: "Google Rating", value: "5.0 ★"},
value: "5.0 ★",
},
{ {
icon: Clock, icon: Clock,
label: "Entrega Rápida", label: "Entrega Rápida", value: "Agilidade"},
value: "Agilidade",
},
{ {
icon: Heart, icon: Heart,
label: "Atendimento", label: "Atendimento", value: "Nota 10"},
value: "Nota 10",
},
{ {
icon: ShoppingBag, icon: ShoppingBag,
label: "Variedade", label: "Variedade", value: "Qualidade"},
value: "Qualidade",
},
]} ]}
metricsAnimation="slide-up" metricsAnimation="slide-up"
/> />
@@ -154,23 +115,11 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
features={[ features={[
{ {
title: "Praticidade Total", title: "Praticidade Total", description: "Localização estratégica anexa ao Max Atacadista para sua conveniência.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-with-juice-cafe_1150-10491.jpg", imageAlt: "Conveniência"},
description: "Localização estratégica anexa ao Max Atacadista para sua conveniência.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-with-juice-cafe_1150-10491.jpg",
imageAlt: "Conveniência",
},
{ {
title: "Entrega Domicílio", title: "Entrega Domicílio", description: "Receba seus medicamentos e itens de cuidado no conforto de sua casa.", imageSrc: "http://img.b2bpic.net/free-photo/crop-man-holding-box-with-belongings_23-2147782374.jpg", imageAlt: "Entrega"},
description: "Receba seus medicamentos e itens de cuidado no conforto de sua casa.",
imageSrc: "http://img.b2bpic.net/free-photo/crop-man-holding-box-with-belongings_23-2147782374.jpg",
imageAlt: "Entrega",
},
{ {
title: "Melhores Preços", title: "Melhores Preços", description: "Economize de verdade com ofertas exclusivas e qualidade garantida.", imageSrc: "http://img.b2bpic.net/free-photo/expressive-young-doctor-posing-winter-holidays_140725-141124.jpg", imageAlt: "Preço"},
description: "Economize de verdade com ofertas exclusivas e qualidade garantida.",
imageSrc: "http://img.b2bpic.net/free-photo/expressive-young-doctor-posing-winter-holidays_140725-141124.jpg",
imageAlt: "Preço",
},
]} ]}
title="Nossos Diferenciais" title="Nossos Diferenciais"
description="Estamos anexo ao Max Atacadista, trazendo praticidade, economia e cuidado humano para o seu dia a dia." description="Estamos anexo ao Max Atacadista, trazendo praticidade, economia e cuidado humano para o seu dia a dia."
@@ -185,41 +134,17 @@ export default function LandingPage() {
useInvertedBackground={true} useInvertedBackground={true}
products={[ products={[
{ {
id: "1", id: "1", name: "Medicamentos", price: "Consulte", imageSrc: "http://img.b2bpic.net/free-photo/selective-focus-medicaments-boxes-pharmacy-shelves_482257-82848.jpg"},
name: "Medicamentos",
price: "Consulte",
imageSrc: "http://img.b2bpic.net/free-photo/selective-focus-medicaments-boxes-pharmacy-shelves_482257-82848.jpg",
},
{ {
id: "2", id: "2", name: "Perfumaria", price: "Consulte", imageSrc: "http://img.b2bpic.net/free-photo/high-view-organic-oils-spa-treatment-arrangement-cosmetics_23-2148645509.jpg"},
name: "Perfumaria",
price: "Consulte",
imageSrc: "http://img.b2bpic.net/free-photo/high-view-organic-oils-spa-treatment-arrangement-cosmetics_23-2148645509.jpg",
},
{ {
id: "3", id: "3", name: "Dermocosméticos", price: "Consulte", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-using-serum_23-2148709287.jpg"},
name: "Dermocosméticos",
price: "Consulte",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-using-serum_23-2148709287.jpg",
},
{ {
id: "4", id: "4", name: "Beleza", price: "Consulte", imageSrc: "http://img.b2bpic.net/free-photo/various-cosmetic-products-with-brushes-white-background_23-2147899540.jpg"},
name: "Beleza",
price: "Consulte",
imageSrc: "http://img.b2bpic.net/free-photo/various-cosmetic-products-with-brushes-white-background_23-2147899540.jpg",
},
{ {
id: "5", id: "5", name: "Suplementos", price: "Consulte", imageSrc: "http://img.b2bpic.net/free-photo/various-plastic-bottles-pills_23-2147983054.jpg"},
name: "Suplementos",
price: "Consulte",
imageSrc: "http://img.b2bpic.net/free-photo/various-plastic-bottles-pills_23-2147983054.jpg",
},
{ {
id: "6", id: "6", name: "Saúde e Bem-Estar", price: "Consulte", imageSrc: "http://img.b2bpic.net/free-photo/pills-cardiogram-near-medical-supplies_23-2147796515.jpg"},
name: "Saúde e Bem-Estar",
price: "Consulte",
imageSrc: "http://img.b2bpic.net/free-photo/pills-cardiogram-near-medical-supplies_23-2147796515.jpg",
},
]} ]}
title="Produtos e Ofertas" title="Produtos e Ofertas"
description="Variedade em medicamentos, perfumaria, dermocosméticos e suplementos." description="Variedade em medicamentos, perfumaria, dermocosméticos e suplementos."
@@ -231,30 +156,15 @@ export default function LandingPage() {
useInvertedBackground={false} useInvertedBackground={false}
testimonials={[ testimonials={[
{ {
id: "1", id: "1", name: "Arthur Sorato", imageSrc: "http://img.b2bpic.net/free-photo/pharmacist-work_23-2150600107.jpg"},
name: "Arthur Sorato",
imageSrc: "http://img.b2bpic.net/free-photo/pharmacist-work_23-2150600107.jpg",
},
{ {
id: "2", id: "2", name: "Gabriel Lourenço", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-pharmacist-helping-patient_23-2150348171.jpg"},
name: "Gabriel Lourenço",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-pharmacist-helping-patient_23-2150348171.jpg",
},
{ {
id: "3", id: "3", name: "Ana Rossi", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-pharmacist-helping-patient_23-2150348184.jpg"},
name: "Ana Rossi",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-pharmacist-helping-patient_23-2150348184.jpg",
},
{ {
id: "4", id: "4", name: "Cliente Satisfeito", imageSrc: "http://img.b2bpic.net/free-photo/pharmacist-work_23-2150600110.jpg"},
name: "Cliente Satisfeito",
imageSrc: "http://img.b2bpic.net/free-photo/pharmacist-work_23-2150600110.jpg",
},
{ {
id: "5", id: "5", name: "Cliente Satisfeito", imageSrc: "http://img.b2bpic.net/free-photo/fascinating-woman-green-attire-making-funny-faces_197531-19780.jpg"},
name: "Cliente Satisfeito",
imageSrc: "http://img.b2bpic.net/free-photo/fascinating-woman-green-attire-making-funny-faces_197531-19780.jpg",
},
]} ]}
cardTitle="Depoimentos Reais" cardTitle="Depoimentos Reais"
cardTag="Avaliações Google" cardTag="Avaliações Google"
@@ -268,20 +178,11 @@ export default function LandingPage() {
useInvertedBackground={true} useInvertedBackground={true}
faqs={[ faqs={[
{ {
id: "q1", id: "q1", title: "Como realizo um pedido?", content: "Basta nos chamar pelo WhatsApp (17) 3465-0560."},
title: "Como realizo um pedido?",
content: "Basta nos chamar pelo WhatsApp (17) 3465-0560.",
},
{ {
id: "q2", id: "q2", title: "Quais são os horários?", content: "Seg-Sáb 8h-20h30 | Dom/Feriados 8h-18h."},
title: "Quais são os horários?",
content: "Seg-Sáb 8h-20h30 | Dom/Feriados 8h-18h.",
},
{ {
id: "q3", id: "q3", title: "Vocês entregam em casa?", content: "Sim, fazemos entrega domicílio com rapidez!"},
title: "Vocês entregam em casa?",
content: "Sim, fazemos entrega domicílio com rapidez!",
},
]} ]}
title="Perguntas Frequentes" title="Perguntas Frequentes"
description="Tire suas dúvidas e saiba como podemos te ajudar melhor hoje." description="Tire suas dúvidas e saiba como podemos te ajudar melhor hoje."
@@ -293,16 +194,13 @@ export default function LandingPage() {
<ContactCTA <ContactCTA
useInvertedBackground={false} useInvertedBackground={false}
background={{ background={{
variant: "plain", variant: "plain"}}
}}
tag="Contato" tag="Contato"
title="Fale com nossa equipe" title="Fale com nossa equipe"
description="Estamos prontos para te atender com todo o carinho. Chame no WhatsApp!" description="Estamos prontos para te atender com todo o carinho. Chame no WhatsApp!"
buttons={[ buttons={[
{ {
text: "Chamar no WhatsApp", text: "Chamar no WhatsApp", href: "https://wa.me/551734650560"},
href: "https://wa.me/551734650560",
},
]} ]}
/> />
</div> </div>
@@ -312,42 +210,27 @@ export default function LandingPage() {
logoText="Farmácia Economize" logoText="Farmácia Economize"
columns={[ columns={[
{ {
title: "Institucional", title: "Institucional", items: [
items: [
{ {
label: "Sobre Nós", label: "Sobre Nós", href: "#"},
href: "#",
},
{ {
label: "Max Atacadista", label: "Max Atacadista", href: "#"},
href: "#",
},
], ],
}, },
{ {
title: "Atendimento", title: "Atendimento", items: [
items: [
{ {
label: "WhatsApp", label: "WhatsApp", href: "https://wa.me/551734650560"},
href: "https://wa.me/551734650560",
},
{ {
label: "Localização", label: "Localização", href: "#"},
href: "#",
},
], ],
}, },
{ {
title: "Social", title: "Social", items: [
items: [
{ {
label: "Instagram", label: "Instagram", href: "#"},
href: "#",
},
{ {
label: "Facebook", label: "Facebook", href: "#"},
href: "#",
},
], ],
}, },
]} ]}