diff --git a/src/app/quem-somos/page.tsx b/src/app/quem-somos/page.tsx index 5407582..a21076f 100644 --- a/src/app/quem-somos/page.tsx +++ b/src/app/quem-somos/page.tsx @@ -11,25 +11,23 @@ import { CheckCircle } from "lucide-react"; export default function AboutPage() { const navItems = [ - { name: "Início", id: "home" }, - { name: "Quem Somos", id: "about" }, - { name: "Serviços", id: "services" }, - { name: "IPSS", id: "ipss" }, - { name: "Contacto", id: "contact" }, + { name: "Início", id: "/" }, + { name: "Quem Somos", id: "/quem-somos" }, + { name: "Serviços", id: "/servicos" }, + { name: "IPSS", id: "/ipss" }, + { name: "Contacto", id: "/contacto" }, ]; const footerColumns = [ { - title: "Empresa", - items: [ + title: "Empresa", items: [ { label: "Quem Somos", href: "/quem-somos" }, { label: "Missão e Valores", href: "/quem-somos" }, { label: "Equipa", href: "/quem-somos" }, ], }, { - title: "Serviços", - items: [ + title: "Serviços", items: [ { label: "Contabilidade Geral", href: "/servicos" }, { label: "Consultoria Fiscal", href: "/servicos" }, { label: "IPSS", href: "/ipss" }, @@ -37,8 +35,7 @@ export default function AboutPage() { ], }, { - title: "Contacto", - items: [ + title: "Contacto", items: [ { label: "Tel: +351 244 XXXXXX", href: "tel:+351244XXXXXX" }, { label: "Email: geral@lugesconta.pt", href: "mailto:geral@lugesconta.pt" }, { label: "Moita da Roda", href: "/contacto" }, @@ -73,10 +70,7 @@ export default function AboutPage() { ); -} \ No newline at end of file +}