From d5fa79d970d13148d8d559a0bc2a206ec74b7322 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 16:01:55 +0000 Subject: [PATCH] Update src/app/sobre/page.tsx --- src/app/sobre/page.tsx | 98 ++++++++++++++++-------------------------- 1 file changed, 36 insertions(+), 62 deletions(-) diff --git a/src/app/sobre/page.tsx b/src/app/sobre/page.tsx index b2b38ea..f89c400 100644 --- a/src/app/sobre/page.tsx +++ b/src/app/sobre/page.tsx @@ -4,19 +4,19 @@ import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; import MediaAbout from "@/components/sections/about/MediaAbout"; -import TeamCardTwo from "@/components/sections/team/TeamCardTwo"; -import FaqBase from "@/components/sections/faq/FaqBase"; +import TestimonialCardSix from "@/components/sections/testimonial/TestimonialCardSix"; import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; -import { Award, Users, HelpCircle, Linkedin, Phone } from "lucide-react"; +import { Award, Heart } from "lucide-react"; -export default function AboutPage() { +export default function SobrePage() { const navItems = [ - { name: "Início", id: "hero" }, - { name: "Serviços", id: "services" }, - { name: "Sobre", id: "about" }, - { name: "Tecnologia", id: "technology" }, - { name: "Avaliações", id: "testimonials" }, - { name: "Contato", id: "contact" }, + { name: "Início", id: "/" }, + { name: "Serviços", id: "/#services" }, + { name: "Sobre", id: "/sobre" }, + { name: "Tecnologia", id: "/#technology" }, + { name: "Avaliações", id: "/#testimonials" }, + { name: "FAQ", id: "/#faq" }, + { name: "Contato", id: "/#contact" }, ]; return ( @@ -39,70 +39,44 @@ export default function AboutPage() { /> -
+
-
- -
- -
- -
- +
+ +
+
@@ -116,4 +90,4 @@ export default function AboutPage() {
); -} \ No newline at end of file +}