Merge version_2 into main #2
187
src/app/page.tsx
187
src/app/page.tsx
@@ -3,15 +3,12 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import HeroSplitDoubleCarousel from '@/components/sections/hero/HeroSplitDoubleCarousel';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -19,109 +16,105 @@ export default function LandingPage() {
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="rounded"
|
||||
contentWidth="small"
|
||||
sizing="largeSmallSizeLargeTitles"
|
||||
background="fluid"
|
||||
cardStyle="outline"
|
||||
primaryButtonStyle="double-inset"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="medium"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Início", id: "hero" },
|
||||
{ name: "Sobre", id: "about" },
|
||||
{ name: "Destaques", id: "features" },
|
||||
{ name: "Produtos", id: "products" },
|
||||
{ name: "Contato", id: "contact" },
|
||||
]}
|
||||
brandName="Supermercado Vieira"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Início", id: "hero" },
|
||||
{ name: "Sobre", id: "about" },
|
||||
{ name: "Destaques", id: "features" },
|
||||
{ name: "Produtos", id: "products" },
|
||||
{ name: "Contato", id: "contact" },
|
||||
]}
|
||||
brandName="Supermercado Vieira"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitDoubleCarousel
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Supermercado Vieira: Qualidade e Frescor"
|
||||
description="Seu supermercado completo, com açougue de qualidade, padaria artesanal, entrega em domicílio e retirada na loja. Tudo o que você precisa em um só lugar."
|
||||
leftCarouselItems={[
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/fresh-organic-vegetables-crate-market-stall_23-2147916200.jpg" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-baked-bread-pastry-shop_23-2150379535.jpg" }
|
||||
]}
|
||||
rightCarouselItems={[
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/fresh-rib-eye-steak-table_140725-7013.jpg" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/woman-shopping-grocery-store-by-refrigerator_1303-16013.jpg" }
|
||||
]}
|
||||
buttons={[{ text: "Ver Ofertas", href: "#products" }]}
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplitDoubleCarousel
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Supermercado Vieira: Qualidade e Frescor"
|
||||
description="Seu supermercado completo, com açougue de qualidade, padaria artesanal, entrega em domicílio e retirada na loja. Tudo o que você precisa em um só lugar."
|
||||
leftCarouselItems={[
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/fresh-organic-vegetables-crate-market-stall_23-2147916200.jpg" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-baked-bread-pastry-shop_23-2150379535.jpg" }
|
||||
]}
|
||||
rightCarouselItems={[
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/fresh-rib-eye-steak-table_140725-7013.jpg" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/woman-shopping-grocery-store-by-refrigerator_1303-16013.jpg" }
|
||||
]}
|
||||
buttons={[{ text: "Ver Ofertas", href: "#products" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<MediaAbout
|
||||
useInvertedBackground={true}
|
||||
title="Tradição e Qualidade"
|
||||
description="Localizado estrategicamente na Av. New York, 1947, o Supermercado Vieira é referência em carnes selecionadas, pães artesanais e atendimento de excelência para toda a região."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/supermarket-worker-supplying-fruit-department-with-food_342744-1075.jpg"
|
||||
/>
|
||||
</div>
|
||||
<div id="about" data-section="about">
|
||||
<MediaAbout
|
||||
useInvertedBackground={true}
|
||||
title="Tradição e Qualidade"
|
||||
description="Localizado estrategicamente na Av. New York, 1947, o Supermercado Vieira é referência em carnes selecionadas, pães artesanais e atendimento de excelência para toda a região."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/supermarket-worker-supplying-fruit-department-with-food_342744-1075.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
title="Nossos Diferenciais"
|
||||
description="Pensando no seu conforto e praticidade diária."
|
||||
features={[
|
||||
{ title: "Açougue de Qualidade", description: "Carnes nobres e cortes especiais frescos diariamente.", imageSrc: "http://img.b2bpic.net/free-photo/man-chef-holding-big-part-meat-restaurant-kitchen_1303-32147.jpg" },
|
||||
{ title: "Padaria Artesanal", description: "Pães, bolos e tortas feitos com receitas exclusivas.", imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-baked-bread-pastry-shop_23-2150379535.jpg" },
|
||||
{ title: "Entrega e Retirada", description: "Escolha receber no conforto do lar ou retirar na loja sem filas.", imageSrc: "http://img.b2bpic.net/free-photo/delivery-man-delivering-box-with-groceries_23-2149453229.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
title="Nossos Diferenciais"
|
||||
description="Pensando no seu conforto e praticidade diária."
|
||||
features={[
|
||||
{ title: "Açougue de Qualidade", description: "Carnes nobres e cortes especiais frescos diariamente.", imageSrc: "http://img.b2bpic.net/free-photo/man-chef-holding-big-part-meat-restaurant-kitchen_1303-32147.jpg" },
|
||||
{ title: "Padaria Artesanal", description: "Pães, bolos e tortas feitos com receitas exclusivas.", imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-baked-bread-pastry-shop_23-2150379535.jpg" },
|
||||
{ title: "Entrega e Retirada", description: "Escolha receber no conforto do lar ou retirar na loja sem filas.", imageSrc: "http://img.b2bpic.net/free-photo/delivery-man-delivering-box-with-groceries_23-2149453229.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={true}
|
||||
title="Ofertas da Semana"
|
||||
description="Qualidade Vieira com os melhores preços da cidade."
|
||||
products={[
|
||||
{ id: "1", name: "Picanha Selecionada", price: "R$ 69,90/kg", imageSrc: "http://img.b2bpic.net/free-photo/fresh-rib-eye-steak-table_140725-7013.jpg" },
|
||||
{ id: "2", name: "Pão Francês Artesanal", price: "R$ 12,99/kg", imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-baked-bread-pastry-shop_23-2150379535.jpg" },
|
||||
{ id: "3", name: "Hortifruti Fresco", price: "Preços diários", imageSrc: "http://img.b2bpic.net/free-photo/fresh-organic-vegetables-crate-market-stall_23-2147916200.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="products" data-section="products">
|
||||
<ProductCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={true}
|
||||
title="Ofertas da Semana"
|
||||
description="Qualidade Vieira com os melhores preços da cidade."
|
||||
products={[
|
||||
{ id: "1", name: "Picanha Selecionada", price: "R$ 69,90/kg", imageSrc: "http://img.b2bpic.net/free-photo/fresh-rib-eye-steak-table_140725-7013.jpg" },
|
||||
{ id: "2", name: "Pão Francês Artesanal", price: "R$ 12,99/kg", imageSrc: "http://img.b2bpic.net/free-photo/view-delicious-baked-bread-pastry-shop_23-2150379535.jpg" },
|
||||
{ id: "3", name: "Hortifruti Fresco", price: "Preços diários", imageSrc: "http://img.b2bpic.net/free-photo/fresh-organic-vegetables-crate-market-stall_23-2147916200.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
tag="Fale Conosco"
|
||||
title="Estamos Prontos para Atender"
|
||||
description="Av. New York, 1947 | Ligue ou mande mensagem: (62) 99324-7263"
|
||||
background={{ variant: "plain" }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/customer-service-concept_23-2148425121.jpg"
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
tag="Fale Conosco"
|
||||
title="Estamos Prontos para Atender"
|
||||
description="Av. New York, 1947 | Ligue ou mande mensagem: (62) 99324-7263"
|
||||
background={{ variant: "plain" }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/customer-service-concept_23-2148425121.jpg"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Supermercado Vieira"
|
||||
columns={[
|
||||
{ title: "Links", items: [{ label: "Início", href: "#hero" }, { label: "Produtos", href: "#products" }] },
|
||||
{ title: "Contato", items: [{ label: "(62) 99324-7263", href: "tel:+5562993247263" }, { label: "Av. New York, 1947", href: "#" }] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Supermercado Vieira"
|
||||
columns={[
|
||||
{ title: "Links", items: [{ label: "Início", href: "#hero" }, { label: "Produtos", href: "#products" }] },
|
||||
{ title: "Contato", items: [{ label: "(62) 99324-7263", href: "tel:+5562993247263" }, { label: "Av. New York, 1947", href: "#" }] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}"
|
||||
}
|
||||
],
|
||||
"rawPlan": "Criei um site personalizado para o Supermercado Vieira focando em suas principais qualidades: açougue, padaria, serviços de entrega e retirada. Incluí as informações de contato, telefone e endereço, e organizei as seções para destacar a experiência do cliente e as promoções."
|
||||
}
|
||||
Reference in New Issue
Block a user