Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e1be407d23 | |||
| 897c59de2d | |||
| 41af87e740 | |||
| b5fe468a1a | |||
| 7362357e02 |
216
src/app/page.tsx
216
src/app/page.tsx
@@ -4,8 +4,8 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import HeroLogo from '@/components/sections/hero/HeroLogo';
|
||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||
import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo';
|
||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
||||
@@ -22,79 +22,44 @@ export default function LandingPage() {
|
||||
cardStyle="gradient-bordered"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="layered"
|
||||
headingFontWeight="light"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Início",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Sobre",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Produtos",
|
||||
id: "produtos",
|
||||
},
|
||||
{
|
||||
name: "Depoimentos",
|
||||
id: "testimonials",
|
||||
},
|
||||
{
|
||||
name: "Contato",
|
||||
id: "contato",
|
||||
},
|
||||
{ name: "Início", id: "hero" },
|
||||
{ name: "Sobre", id: "about" },
|
||||
{ name: "Produtos", id: "produtos" },
|
||||
{ name: "Depoimentos", id: "testimonials" },
|
||||
{ name: "Contato", id: "contato" },
|
||||
]}
|
||||
brandName="Magazine Generoso"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogo
|
||||
<HeroCarouselLogo
|
||||
logoText="Magazine Generoso Utilidades"
|
||||
description="Tudo para sua casa com qualidade, organização e preço justo. Referência em Francisco Morato - SP."
|
||||
description="Qualidade, organização e preço justo em Francisco Morato. Tudo o que você precisa para transformar seu lar."
|
||||
buttons={[
|
||||
{
|
||||
text: "Fale conosco",
|
||||
href: "#contato",
|
||||
},
|
||||
{
|
||||
text: "Como chegar",
|
||||
href: "#contato",
|
||||
},
|
||||
{ text: "Ver Produtos", href: "#produtos" },
|
||||
{ text: "Fale Conosco", href: "#contato" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/woman-white-shirt-standing-rhe-kitchen-with-oatmeal_1157-27102.jpg?_wi=1"
|
||||
imageAlt="Loja organizada de utilidades domésticas"
|
||||
slides={[
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/woman-white-shirt-standing-rhe-kitchen-with-oatmeal_1157-27102.jpg?_wi=1", imageAlt: "Loja organizada de utilidades domésticas" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/closeup-modern-steel-pan-interior-kitchen_169016-20016.jpg?_wi=1", imageAlt: "Utensílios de cozinha" },
|
||||
]}
|
||||
showDimOverlay={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<MetricSplitMediaAbout
|
||||
<InlineImageSplitTextAbout
|
||||
useInvertedBackground={true}
|
||||
title="Excelência e Confiança"
|
||||
description="Situados no Centro de Francisco Morato, somos dedicados a oferecer a melhor experiência para o seu lar. Com preços transparentes e uma loja impecavelmente organizada, nossa missão é facilitar o dia a dia da sua família."
|
||||
metrics={[
|
||||
{
|
||||
value: "5.0",
|
||||
title: "Nota no Google",
|
||||
},
|
||||
{
|
||||
value: "70+",
|
||||
title: "Avaliações Reais",
|
||||
},
|
||||
{
|
||||
value: "Grande",
|
||||
title: "Variedade",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/person-ordering-food-restaurant_23-2149269226.jpg?_wi=1"
|
||||
imageAlt="Nossa loja organizada"
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
heading={[{ type: "text", content: "Excelência em cada detalhe" }]}
|
||||
buttons={[{ text: "Conheça nossa loja" }]}
|
||||
className="py-20"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -105,51 +70,12 @@ export default function LandingPage() {
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Utensílios de Cozinha",
|
||||
price: "Consulte preços",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-modern-steel-pan-interior-kitchen_169016-20016.jpg?_wi=1",
|
||||
imageAlt: "Utensílios de cozinha",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Organização Doméstica",
|
||||
price: "Consulte preços",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/preserved-food-assortment-shelves_23-2149238969.jpg?_wi=1",
|
||||
imageAlt: "Organizadores",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Produtos de Limpeza",
|
||||
price: "Consulte preços",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-cleaning-solution-gloves_23-2148587271.jpg?_wi=1",
|
||||
imageAlt: "Limpeza",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Utilidades Gerais",
|
||||
price: "Consulte preços",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-modern-steel-pan-interior-kitchen_169016-20016.jpg?_wi=2",
|
||||
imageAlt: "Utilidades",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Artigos de Decoração",
|
||||
price: "Consulte preços",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/preserved-food-assortment-shelves_23-2149238969.jpg?_wi=2",
|
||||
imageAlt: "Decoração",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Variedades para Casa",
|
||||
price: "Consulte preços",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-cleaning-solution-gloves_23-2148587271.jpg?_wi=2",
|
||||
imageAlt: "Variedades",
|
||||
},
|
||||
{ id: "p1", name: "Utensílios de Cozinha", price: "Consulte", imageSrc: "http://img.b2bpic.net/free-photo/closeup-modern-steel-pan-interior-kitchen_169016-20016.jpg?_wi=1" },
|
||||
{ id: "p2", name: "Organização", price: "Consulte", imageSrc: "http://img.b2bpic.net/free-photo/preserved-food-assortment-shelves_23-2149238969.jpg?_wi=1" },
|
||||
{ id: "p3", name: "Limpeza", price: "Consulte", imageSrc: "http://img.b2bpic.net/free-photo/front-view-cleaning-solution-gloves_23-2148587271.jpg?_wi=1" },
|
||||
]}
|
||||
title="Variedade para seu Lar"
|
||||
description="Temos tudo o que você precisa para equipar e organizar sua casa com economia."
|
||||
title="Linha Completa de Utilidades"
|
||||
description="Encontre tudo para equipar sua casa com praticidade e economia."
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -158,101 +84,33 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
name: "Maria Silva",
|
||||
date: "10/2025",
|
||||
title: "Cliente fiel",
|
||||
quote: "Loja impecável de organização, encontro tudo aqui.",
|
||||
tag: "Excelente",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/side-view-people-garage-sale_23-2150577059.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-white-shirt-standing-rhe-kitchen-with-oatmeal_1157-27102.jpg?_wi=2",
|
||||
imageAlt: "organized kitchen houseware store display",
|
||||
},
|
||||
{
|
||||
id: "t2",
|
||||
name: "João Santos",
|
||||
date: "09/2025",
|
||||
title: "Cliente satisfeito",
|
||||
quote: "Encontramos tudo para casa com preços ótimos.",
|
||||
tag: "Recomendo",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-glassblower_107420-74246.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/person-ordering-food-restaurant_23-2149269226.jpg?_wi=2",
|
||||
imageAlt: "friendly shop staff assisting customer",
|
||||
},
|
||||
{
|
||||
id: "t3",
|
||||
name: "Ana Souza",
|
||||
date: "09/2025",
|
||||
title: "Cliente frequente",
|
||||
quote: "O atendimento é muito bom, sempre prestativos.",
|
||||
tag: "Melhor loja",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/friends-shopping-second-hand-market_23-2149353757.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-modern-steel-pan-interior-kitchen_169016-20016.jpg?_wi=3",
|
||||
imageAlt: "stainless steel kitchen utensils",
|
||||
},
|
||||
{
|
||||
id: "t4",
|
||||
name: "Carlos Lima",
|
||||
date: "08/2025",
|
||||
title: "Cliente",
|
||||
quote: "Preços muito claros e variedade gigante.",
|
||||
tag: "Top",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-standing-kitchen-with-donut_1157-27975.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/preserved-food-assortment-shelves_23-2149238969.jpg?_wi=3",
|
||||
imageAlt: "storage containers kitchen organization",
|
||||
},
|
||||
{
|
||||
id: "t5",
|
||||
name: "Fernanda Oliveira",
|
||||
date: "08/2025",
|
||||
title: "Cliente",
|
||||
quote: "Atendimento excelente, nota mil!",
|
||||
tag: "Nota 10",
|
||||
avatarSrc: "http://img.b2bpic.net/free-photo/couple-shops-zero-waste-supermarket_482257-76230.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-cleaning-solution-gloves_23-2148587271.jpg?_wi=3",
|
||||
imageAlt: "cleaning supplies home essential",
|
||||
},
|
||||
{ id: "t1", name: "Maria Silva", date: "10/2025", title: "Cliente fiel", quote: "Loja impecável, encontro tudo que preciso para organização!", tag: "Excelente", avatarSrc: "http://img.b2bpic.net/free-photo/side-view-people-garage-sale_23-2150577059.jpg" },
|
||||
{ id: "t2", name: "João Santos", date: "09/2025", title: "Cliente satisfeito", quote: "Ótimo atendimento e preços competitivos.", tag: "Recomendo", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-glassblower_107420-74246.jpg" },
|
||||
]}
|
||||
title="O que dizem nossos clientes"
|
||||
description="Orgulho de ser nota 5 estrelas em Francisco Morato."
|
||||
title="Opinião de nossos clientes"
|
||||
description="Transformando casas com a confiança que você merece."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contato" data-section="contato">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{
|
||||
variant: "animated-grid",
|
||||
}}
|
||||
text="Venha nos visitar em Francisco Morato! Estamos na Travessa José Benedito Ryan, 56. Atendimento de segunda a sábado. Entre em contato pelo WhatsApp (11) 2503-7605."
|
||||
background={{ variant: "animated-grid" }}
|
||||
text="Magazine Generoso - Travessa José Benedito Ryan, 56. Atendimento especializado em Francisco Morato. Fale com nossa equipe pelo WhatsApp!"
|
||||
buttons={[
|
||||
{
|
||||
text: "WhatsApp",
|
||||
href: "https://wa.me/551125037605",
|
||||
},
|
||||
{
|
||||
text: "Como chegar",
|
||||
href: "https://maps.google.com/?q=Travessa+José+Benedito+Ryan+56+Francisco+Morato",
|
||||
},
|
||||
{ text: "WhatsApp (11) 2503-7605", href: "https://wa.me/551125037605" },
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="Magazine Generoso"
|
||||
leftLink={{
|
||||
text: "Instagram",
|
||||
href: "https://www.instagram.com/magazinegeneroso/",
|
||||
}}
|
||||
rightLink={{
|
||||
text: "Hadsites © 2026",
|
||||
href: "#",
|
||||
}}
|
||||
leftLink={{ text: "Instagram", href: "https://www.instagram.com/magazinegeneroso/" }}
|
||||
rightLink={{ text: "Copyright 2026", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user