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 +}