Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6cbd0bb82e | |||
| ad277b0c9d | |||
| d503ffa7d7 | |||
| 9fd24e97e8 | |||
| d91c4bab71 | |||
| d0688866e9 | |||
| 2d5a6a7326 |
@@ -2,15 +2,15 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import ProductCardFour from '@/components/sections/product/ProductCardFour';
|
||||
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
||||
import { CheckCircle } from "lucide-react";
|
||||
import { CheckCircle, Phone } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -37,7 +37,7 @@ export default function LandingPage() {
|
||||
{
|
||||
name: "Cardápio", id: "menu"},
|
||||
{
|
||||
name: "Reservar", id: "contact"},
|
||||
name: "Contato", id: "contact"},
|
||||
]}
|
||||
brandName="Grano Restaurante"
|
||||
/>
|
||||
@@ -55,7 +55,7 @@ export default function LandingPage() {
|
||||
{
|
||||
text: "Reservar Mesa", href: "#contact"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-delicious-food-assortment_23-2148949102.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-delicious-food-assortment_23-2148949102.jpg?_wi=1"
|
||||
imageAlt="Pizza artesanal de fermentação natural"
|
||||
/>
|
||||
</div>
|
||||
@@ -153,52 +153,44 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
title="Reserve sua mesa"
|
||||
description="Estamos prontos para te receber com o melhor do nosso forno."
|
||||
inputs={[
|
||||
{
|
||||
name: "name", type: "text", placeholder: "Seu Nome", required: true,
|
||||
},
|
||||
{
|
||||
name: "email", type: "email", placeholder: "Seu E-mail", required: true,
|
||||
},
|
||||
<ContactCTA
|
||||
tag="Reservas"
|
||||
tagIcon={Phone}
|
||||
title="Reserve sua mesa hoje mesmo"
|
||||
description="Estamos prontos para receber você com o melhor da nossa gastronomia. Garanta seu lugar."
|
||||
buttons={[
|
||||
{ text: "Fazer Reserva", href: "tel:+5511999999999" }
|
||||
]}
|
||||
textarea={{
|
||||
name: "message", placeholder: "Quantas pessoas e qual o horário?", rows: 4,
|
||||
}}
|
||||
mediaAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/medium-shot-woman-holding-donut_23-2148773568.jpg?_wi=2"
|
||||
imageAlt="Ambiente aconchegante"
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterSimple
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/front-view-delicious-food-assortment_23-2148949102.jpg?_wi=2"
|
||||
columns={[
|
||||
{
|
||||
title: "Endereço", items: [
|
||||
{
|
||||
label: "Av. dos Sabores, 123", href: "#"},
|
||||
{
|
||||
label: "WhatsApp: (11) 99999-9999", href: "#"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Redes", items: [
|
||||
{
|
||||
label: "Instagram", href: "#"},
|
||||
{
|
||||
label: "iFood", href: "#"},
|
||||
],
|
||||
{
|
||||
title: "Navegação",
|
||||
items: [
|
||||
{ label: "Início", href: "#hero" },
|
||||
{ label: "Cardápio", href: "#menu" },
|
||||
{ label: "Sobre", href: "#about" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Contato",
|
||||
items: [
|
||||
{ label: "WhatsApp", href: "https://wa.me/5511999999999" },
|
||||
{ label: "E-mail", href: "mailto:contato@grano.com.br" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
bottomLeftText="© 2024 Grano Restaurante. Todos os direitos reservados."
|
||||
bottomRightText="Feito com paixão pela pizza artesanal."
|
||||
logoText="Grano"
|
||||
copyrightText="© 2024 Grano Restaurante. Todos os direitos reservados."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user