From c4795776eaeb8b85cd9149e7a203a8aad3ae8666 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 10 May 2026 06:50:55 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 141 +++++++++++++++-------------------------------- 1 file changed, 44 insertions(+), 97 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 44f8bbd..58f9cfd 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,16 +2,16 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; -import FaqDouble from '@/components/sections/faq/FaqDouble'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FaqSplitText from '@/components/sections/faq/FaqSplitText'; import FeatureCardTen from '@/components/sections/feature/FeatureCardTen'; -import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import FooterCard from '@/components/sections/footer/FooterCard'; import HeroCarouselLogo from '@/components/sections/hero/heroCarouselLogo/HeroCarouselLogo'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import ProductCardThree from '@/components/sections/product/ProductCardThree'; -import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen'; +import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; import TextAbout from '@/components/sections/about/TextAbout'; -import { Shield, Sparkles, Ear } from "lucide-react"; +import { Shield, Sparkles, Ear, Instagram, MessageCircle } from "lucide-react"; export default function LandingPage() { return ( @@ -31,16 +31,11 @@ export default function LandingPage() { @@ -69,10 +58,7 @@ export default function LandingPage() { @@ -83,38 +69,18 @@ export default function LandingPage() { useInvertedBackground={true} features={[ { - title: "Escuta Ativa", description: "Um olhar atento e sem julgamentos para compreender profundamente suas questões.", media: { - imageSrc: "http://img.b2bpic.net/free-photo/smiling-portrait-young-woman-sitting-gray-sofa-looking-camera_23-2148053192.jpg?_wi=1", imageAlt: "Smiling portrait of a young woman sitting on gray sofa looking at camera"}, - items: [ - { - icon: Ear, - text: "Presença total"}, - ], + title: "Escuta Ativa", description: "Um olhar atento e sem julgamentos para compreender profundamente suas questões.", media: { imageSrc: "http://img.b2bpic.net/free-photo/smiling-portrait-young-woman-sitting-gray-sofa-looking-camera_23-2148053192.jpg?_wi=1", imageAlt: "Smiling portrait of a young woman sitting on gray sofa looking at camera" }, + items: [{ icon: Ear, text: "Presença total" }], reverse: false, }, { - title: "Ambiente Seguro", description: "Espaço confidencial preparado para que você se sinta à vontade.", media: { - imageSrc: "http://img.b2bpic.net/free-photo/authentic-scene-young-person-undergoing-psychological-therapy_23-2150161951.jpg?_wi=1", imageAlt: "Authentic scene of young person undergoing psychological therapy"}, - items: [ - { - icon: Shield, - text: "Sigilo absoluto"}, - ], + title: "Ambiente Seguro", description: "Espaço confidencial preparado para que você se sinta à vontade.", media: { imageSrc: "http://img.b2bpic.net/free-photo/authentic-scene-young-person-undergoing-psychological-therapy_23-2150161951.jpg?_wi=1", imageAlt: "Authentic scene of young person undergoing psychological therapy" }, + items: [{ icon: Shield, text: "Sigilo absoluto" }], reverse: true, }, - { - title: "Transformação Pessoal", description: "Ferramentas práticas para o autoconhecimento e o desenvolvimento emocional.", media: { - imageSrc: "http://img.b2bpic.net/free-photo/authentic-scene-young-person-undergoing-psychological-therapy_23-2150161931.jpg?_wi=1", imageAlt: "Authentic scene of young person undergoing psychological therapy"}, - items: [ - { - icon: Sparkles, - text: "Crescimento contínuo"}, - ], - reverse: false, - }, ]} title="Abordagem Terapêutica" - description="Meu trabalho é pautado em três pilares fundamentais para sua saúde mental:" + description="Meu trabalho é pautado em pilares fundamentais para sua saúde mental:" /> @@ -128,9 +94,6 @@ export default function LandingPage() { { id: "p1", name: "Psicoterapia Individual", price: "Consulte", imageSrc: "http://img.b2bpic.net/free-photo/person-sharing-feelings-emotions-therapy-session_23-2151073985.jpg?_wi=1" }, { id: "p2", name: "Atendimento Online", price: "Consulte", imageSrc: "http://img.b2bpic.net/free-photo/i-love-visiting-grandma-her-lovely-house_329181-2525.jpg?_wi=1" }, { id: "p3", name: "Orientação Parental", price: "Consulte", imageSrc: "http://img.b2bpic.net/free-photo/smiling-young-granddaughter-talking-her-grandmother_171337-7795.jpg?_wi=1" }, - { id: "p4", name: "Acompanhamento Especializado", price: "Consulte", imageSrc: "http://img.b2bpic.net/free-photo/elderly-therapist-gazing-towards-window_482257-114915.jpg?_wi=1" }, - { id: "p5", name: "Plantão Psicológico", price: "Consulte", imageSrc: "http://img.b2bpic.net/free-photo/authentic-scene-young-person-undergoing-psychological-therapy_23-2150161978.jpg?_wi=1" }, - { id: "p6", name: "Consultoria em Saúde Mental", price: "Consulte", imageSrc: "http://img.b2bpic.net/free-photo/authentic-scene-young-person-undergoing-psychological-therapy_23-2150161947.jpg?_wi=1" }, ]} title="Serviços" description="Atendimento humanizado voltado para suas necessidades específicas." @@ -138,74 +101,58 @@ export default function LandingPage() {
-
-
-
); -} \ No newline at end of file +}