Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #6.
This commit is contained in:
@@ -19,9 +19,20 @@ const navItems = [
|
||||
|
||||
export default function Page() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingInline navItems={navItems} brandName="Fornaciari Coffee" />
|
||||
<NavbarLayoutFloatingInline navItems={navItems} brandName="Fornaciari Coffee" button={{ text: "Conheça" }} />
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
@@ -46,11 +57,12 @@ export default function Page() {
|
||||
/>
|
||||
</div>
|
||||
<div id="historia" data-section="historia">
|
||||
<TextAbout tag="Nossa História" title="Tradição familiar no Cerrado" />
|
||||
<TextAbout tag="Nossa História" title="Tradição familiar no Cerrado" useInvertedBackground={false} />
|
||||
</div>
|
||||
<div id="origem" data-section="origem">
|
||||
<FeatureCardEight
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
title="Cerrado Mineiro: Denominação de Origem"
|
||||
description="Altitude de 1.000m e condições ideais que elevam o café especial a patamares internacionais de reconhecimento."
|
||||
features={[
|
||||
@@ -79,15 +91,13 @@ export default function Page() {
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
title="Linha de produtos"
|
||||
description="Escolha o formato ideal para o seu negócio ou consumo."
|
||||
products={[
|
||||
{ id: "p1", name: "Embalagem 250g", price: "Empórios e presentes", imageSrc: "http://img.b2bpic.net/free-photo/two-big-hermetic-packages-with-blank-labels-near-transparent-glass-with-raw-sampled-coffee-beans_346278-410.jpg" },
|
||||
{ id: "p2", name: "Embalagem 500g", price: "Cafeterias menores", imageSrc: "http://img.b2bpic.net/free-photo/coffee-bag-mockup_23-2151989760.jpg" },
|
||||
{ id: "p3", name: "Embalagem 1kg", price: "Alta rotatividade", imageSrc: "http://img.b2bpic.net/free-photo/black-coffee-bag-mockup_187299-47334.jpg" },
|
||||
{ id: "p4", name: "Grandes Volumes", price: "Sacos de 5kg sob consulta", imageSrc: "http://img.b2bpic.net/free-photo/seasoning-caffeine-color-seed-freshness_1172-455.jpg" },
|
||||
{ id: "p5", name: "Moagem fresca", price: "Grãos ou moído", imageSrc: "http://img.b2bpic.net/free-photo/top-view-chesnuts-cloth_23-2148436658.jpg" },
|
||||
{ id: "p6", name: "Controle total", price: "Lotes consistentes", imageSrc: "http://img.b2bpic.net/free-photo/tool-used-coffee-machine-coffee-making-process_23-2150187556.jpg" }
|
||||
{ id: "p3", name: "Embalagem 1kg", price: "Alta rotatividade", imageSrc: "http://img.b2bpic.net/free-photo/black-coffee-bag-mockup_187299-47334.jpg" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -108,23 +118,10 @@ export default function Page() {
|
||||
<div id="parcerias" data-section="parcerias">
|
||||
<SocialProofOne
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
title="Nossos parceiros"
|
||||
description="Atendemos quem busca excelência profissional."
|
||||
names={["Cafeterias", "Restaurantes", "Empórios", "Escritórios", "Revendedores", "Hotéis", "Empresas Corporativas"]}
|
||||
/>
|
||||
</div>
|
||||
<div id="como-comprar" data-section="como-comprar">
|
||||
<FeatureCardEight
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
title="Processo de atendimento"
|
||||
description="Simples, direto e transparente."
|
||||
features={[
|
||||
{ title: "1. Contato", description: "Inicie o diálogo", imageSrc: "http://img.b2bpic.net/free-photo/front-view-working-covid-concept_23-2148616720.jpg" },
|
||||
{ title: "2. Degustação", description: "Receba sua amostra", imageSrc: "http://img.b2bpic.net/free-photo/paint-supplies-black-background_23-2148319720.jpg" },
|
||||
{ title: "3. Negociação", description: "Acordo sob medida", imageSrc: "http://img.b2bpic.net/free-photo/authentic-book-club-scene_23-2150104611.jpg" },
|
||||
{ title: "4. Entrega", description: "Produto fresco", imageSrc: "http://img.b2bpic.net/free-photo/parcels-clipboard-table_23-2147787834.jpg" }
|
||||
]}
|
||||
names={["Cafeterias", "Restaurantes", "Empórios", "Escritórios", "Revendedores"]}
|
||||
/>
|
||||
</div>
|
||||
<div id="contato" data-section="contato">
|
||||
@@ -133,6 +130,7 @@ export default function Page() {
|
||||
title="Vamos conversar?"
|
||||
description="Entre em contato para solicitar nossa tabela completa ou agendar uma degustação."
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/bar-concept_23-2147798083.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user