diff --git a/src/app/page.tsx b/src/app/page.tsx index da34e50..ccf46f6 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -99,7 +99,7 @@ export default function HomePage() { tag="Tratamentos Especializados" tagIcon={Sparkles} textboxLayout="default" - animationType="smooth" + animationType="blur-reveal" useInvertedBackground={false} features={[ { @@ -121,7 +121,7 @@ export default function HomePage() { tag="Inovação em Implantodontia" tagIcon={Zap} textboxLayout="default" - animationType="smooth" + animationType="slide-up" useInvertedBackground={true} metrics={[ { @@ -147,7 +147,7 @@ export default function HomePage() { tag="Depoimentos" tagIcon={Heart} textboxLayout="default" - animationType="smooth" + animationType="blur-reveal" useInvertedBackground={false} speed={40} testimonials={[ @@ -174,7 +174,6 @@ export default function HomePage() { tag="Informações" tagIcon={HelpCircle} textboxLayout="default" - animationType="smooth" faqsAnimation="blur-reveal" useInvertedBackground={false} faqs={[ diff --git a/src/app/sobre/page.tsx b/src/app/sobre/page.tsx index b2b38ea..5a16508 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,7 +39,7 @@ export default function AboutPage() { /> -
+
-
- -
- -
- -
- +
+ +
+
@@ -116,4 +90,4 @@ export default function AboutPage() {
); -} \ No newline at end of file +}