From fd5f1c45923778d7c5dda76ff7c9a47fe5fd3b0b Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 23 Mar 2026 18:36:21 +0000 Subject: [PATCH] Update src/app/servicos/page.tsx --- src/app/servicos/page.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 (