Update src/app/contato/page.tsx

This commit is contained in:
2026-04-20 19:43:46 +00:00
parent a7f34f2540
commit b13f9559e1

View File

@@ -7,48 +7,39 @@ import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
export default function LandingPage() {
export default function ContatoPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Início",
id: "/",
},
{
name: "Sobre",
id: "/sobre",
},
{
name: "Cardápio",
id: "/cardapio",
},
{
name: "Contato",
id: "/contato",
},
{ name: "Início", id: "/" },
{ name: "Sobre", id: "/sobre" },
{ name: "Cardápio", id: "/cardapio" },
{ name: "Contato", id: "/contato" },
]}
brandName="Camarão Carioca"
button={{
text: "Reservar Mesa",
href: "/contato",
}}
button={{ text: "Reservar Mesa", href: "/contato" }}
/>
</div>
<div id="contact-page" data-section="contact-page">
<ContactSplit
tag="Reserva"
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
title="Sua mesa está pronta."
description="Reserve agora pelo nosso WhatsApp ou faça uma visita."
imageSrc="http://img.b2bpic.net/free-photo/modern-kitchen-design-interior_23-2150954776.jpg"
@@ -64,23 +55,11 @@ export default function LandingPage() {
description="Preencha os detalhes e entraremos em contato."
imageSrc="http://img.b2bpic.net/free-photo/wine-bottles-winery-cellar_1398-4740.jpg"
inputs={[
{
name: "name",
type: "text",
placeholder: "Seu nome",
required: true,
},
{
name: "email",
type: "email",
placeholder: "Seu e-mail",
required: true,
},
{ name: "name", type: "text", placeholder: "Seu nome", required: true },
{ name: "email", type: "email", placeholder: "Seu e-mail", required: true },
]}
textarea={{
name: "message",
placeholder: "Descreva sua necessidade (data, número de pessoas)",
rows: 4,
name: "message", placeholder: "Descreva sua necessidade (data, número de pessoas)", rows: 4,
required: true,
}}
/>
@@ -89,34 +68,8 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Sobre",
href: "/sobre",
},
{
label: "Cardápio",
href: "/cardapio",
},
{
label: "Contato",
href: "/contato",
},
],
},
{
items: [
{
label: "Instagram",
href: "#",
},
{
label: "Facebook",
href: "#",
},
],
},
{ items: [{ label: "Sobre", href: "/sobre" }, { label: "Cardápio", href: "/cardapio" }, { label: "Contato", href: "/contato" }] },
{ items: [{ label: "Instagram", href: "#" }, { label: "Facebook", href: "#" }] },
]}
logoText="Camarão Carioca Jurerê"
/>