diff --git a/src/app/contato/page.tsx b/src/app/contato/page.tsx
index 9ff522f..1def7d9 100644
--- a/src/app/contato/page.tsx
+++ b/src/app/contato/page.tsx
@@ -1,19 +1,18 @@
"use client";
+import Link from "next/link";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
-import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
-import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
-import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
-import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
-import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal";
+import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
+import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
+import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
+import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
export default function ContatoPage() {
const navItems = [
- { name: "Início", id: "home", href: "/" },
- { name: "Sobre Nós", id: "about", href: "/sobre" },
- { name: "Serviços", id: "services", href: "/servicos" },
- { name: "Depoimentos", id: "testimonials", href: "/depoimentos" },
- { name: "Contato", id: "contact", href: "/contato" },
+ { name: "Início", id: "/" },
+ { name: "Sobre Nós", id: "/sobre" },
+ { name: "Serviços", id: "/servicos" },
+ { name: "Contato", id: "/contato" }
];
return (
@@ -38,51 +37,19 @@ export default function ContatoPage() {
/>
-
-
+
-
-
-
-
@@ -91,18 +58,14 @@ export default function ContatoPage() {
title="Agende Sua Consulta na Odontologia Novo Mundo"
description="Estamos prontos para cuidar do seu sorriso em Curitiba. Preencha o formulário abaixo ou ligue diretamente para agendar seu horário. Nosso atendimento é humanizado e com foco total em você!"
inputs={[
- {
- name: "Nome", type: "text", placeholder: "Seu Nome Completo", required: true,
- },
- {
- name: "Telefone", type: "tel", placeholder: "(41) 9XXXX-XXXX", required: true,
- },
+ { name: "Nome", type: "text", placeholder: "Seu Nome Completo", required: true },
+ { name: "Telefone", type: "tel", placeholder: "(41) 9XXXX-XXXX", required: true }
]}
textarea={{
- name: "Mensagem", placeholder: "Descreva brevemente sua necessidade ou dúvida", required: false,
+ name: "Mensagem", placeholder: "Descreva brevemente sua necessidade ou dúvida", required: false
}}
useInvertedBackground={true}
- imageSrc="http://img.b2bpic.net/free-photo/female-blogger-streaming-online-with-tablet_23-2148771582.jpg?_wi=2"
+ imageSrc="http://img.b2bpic.net/free-photo/female-blogger-streaming-online-with-tablet_23-2148771582.jpg"
imageAlt="Localização da Odontologia Novo Mundo em Curitiba, Paraná."
mediaAnimation="entrance-slide"
mediaPosition="right"
@@ -114,9 +77,11 @@ export default function ContatoPage() {
diff --git a/src/app/servicos/page.tsx b/src/app/servicos/page.tsx
index bfd5624..3d2d588 100644
--- a/src/app/servicos/page.tsx
+++ b/src/app/servicos/page.tsx
@@ -13,7 +13,6 @@ export default function ServicosPage() {
{ name: "Início", id: "/" },
{ name: "Sobre Nós", id: "/sobre" },
{ name: "Serviços", id: "/servicos" },
- { name: "Depoimentos", id: "/depoimentos" },
{ name: "Contato", id: "/contato" }
];
diff --git a/src/app/sobre/page.tsx b/src/app/sobre/page.tsx
index 7b91fec..2b6e77b 100644
--- a/src/app/sobre/page.tsx
+++ b/src/app/sobre/page.tsx
@@ -11,8 +11,10 @@ import { Smile, Award, CheckCircle } from 'lucide-react';
export default function SobrePage() {
const navItems = [
- { name: "Início", id: "home", href: "/" },
- { name: "Sobre Nós", id: "about", href: "/sobre" }
+ { name: "Início", id: "/" },
+ { name: "Sobre Nós", id: "/sobre" },
+ { name: "Serviços", id: "/servicos" },
+ { name: "Contato", id: "/contato" }
];
return (