diff --git a/src/app/contato/page.tsx b/src/app/contato/page.tsx index fdaecf8..492d07b 100644 --- a/src/app/contato/page.tsx +++ b/src/app/contato/page.tsx @@ -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:00–18: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" } - ]} /> diff --git a/src/app/page.tsx b/src/app/page.tsx index d46ccb1..10a8959 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -8,6 +8,7 @@ import TestimonialCardThirteen from "@/components/sections/testimonial/Testimoni 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 HomePage() { const navItems = [ @@ -18,8 +19,8 @@ export default function HomePage() { ]; const footerSocialLinks = [ - { icon: "Instagram", href: "#", ariaLabel: "Instagram" }, - { icon: "Facebook", href: "#", ariaLabel: "Facebook" } + { icon: Instagram, href: "#", ariaLabel: "Instagram" }, + { icon: Facebook, href: "#", ariaLabel: "Facebook" } ]; return ( @@ -53,7 +54,6 @@ export default function HomePage() { background={{ variant: "radial-gradient" }} imageSrc="http://img.b2bpic.net/free-photo/woman-getting-treatment-hairdresser-shop_23-2149229812.jpg" imageAlt="Interior de um salão de beleza moderno e elegante" - useInvertedBackground={false} /> @@ -97,9 +97,6 @@ export default function HomePage() { background={{ variant: "plain" }} useInvertedBackground={true} buttonText="Ver Localização no Mapa" - buttons={[ - { text: "Ver no Google Maps", href: "https://www.google.com/maps/place/R.+Joaquim+Fel%C3%ADcio,+645+-+Messejana,+Fortaleza+-+CE,+60840-115" } - ]} /> diff --git a/src/app/servicos/page.tsx b/src/app/servicos/page.tsx index 6912b36..1de9ad3 100644 --- a/src/app/servicos/page.tsx +++ b/src/app/servicos/page.tsx @@ -5,6 +5,7 @@ import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarS import ProductCardOne from "@/components/sections/product/ProductCardOne"; import FooterCard from "@/components/sections/footer/FooterCard"; import Link from "next/link"; +import { Instagram, Facebook } from 'lucide-react'; export default function ServicesPage() { const navItems = [ @@ -15,8 +16,8 @@ export default function ServicesPage() { ]; const footerSocialLinks = [ - { icon: "Instagram", href: "#", ariaLabel: "Instagram" }, - { icon: "Facebook", href: "#", ariaLabel: "Facebook" } + { icon: Instagram, href: "#", ariaLabel: "Instagram" }, + { icon: Facebook, href: "#", ariaLabel: "Facebook" } ]; return ( diff --git a/src/app/sobre/page.tsx b/src/app/sobre/page.tsx index 41c7c13..1a3cd75 100644 --- a/src/app/sobre/page.tsx +++ b/src/app/sobre/page.tsx @@ -6,6 +6,7 @@ import TextAbout from "@/components/sections/about/TextAbout"; import TeamCardTen from "@/components/sections/team/TeamCardTen"; import FooterCard from "@/components/sections/footer/FooterCard"; import Link from "next/link"; +import { Instagram, Facebook } from 'lucide-react'; export default function AboutPage() { const navItems = [ @@ -16,8 +17,8 @@ export default function AboutPage() { ]; const footerSocialLinks = [ - { icon: "Instagram", href: "#", ariaLabel: "Instagram" }, - { icon: "Facebook", href: "#", ariaLabel: "Facebook" } + { icon: Instagram, href: "#", ariaLabel: "Instagram" }, + { icon: Facebook, href: "#", ariaLabel: "Facebook" } ]; return ( @@ -44,7 +45,7 @@ export default function AboutPage() {