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 (