Update src/app/contato/page.tsx

This commit is contained in:
2026-03-23 18:36:20 +00:00
parent e2acecdaa1
commit 610423bb22

View File

@@ -5,6 +5,7 @@ import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarS
import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterCard from "@/components/sections/footer/FooterCard";
import Link from "next/link";
import { Instagram, Facebook } from 'lucide-react';
export default function ContactPage() {
const navItems = [
@@ -15,8 +16,8 @@ export default function ContactPage() {
];
const footerSocialLinks = [
{ icon: "Instagram", href: "#", ariaLabel: "Instagram" },
{ icon: "Facebook", href: "#", ariaLabel: "Facebook" }
{ icon: Instagram, href: "#", ariaLabel: "Instagram" },
{ icon: Facebook, href: "#", ariaLabel: "Facebook" }
];
return (
@@ -50,10 +51,6 @@ export default function ContactPage() {
inputPlaceholder="Seu nome"
buttonText="Enviar Mensagem"
termsText="R. Joaquim Felício, 645 - Messejana, Fortaleza - CE, 60840-115 | WhatsApp: (085) 99750-4855 | Horário: 08:0018:00"
buttons={[
{ text: "Agendar via WhatsApp", href: "https://wa.me/5585997504855" },
{ text: "Ver no Google Maps", href: "https://www.google.com/maps/place/R.+Joaquim+Fel%C3%ADcio,+645+-+Messejana,+Fortaleza+-+CE,+60840-115" }
]}
/>
</div>