Merge version_3 into main #2

Merged
bender merged 1 commits from version_3 into main 2026-06-12 14:00:00 +00:00

View File

@@ -11,7 +11,7 @@ import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi';
import MediaAbout from '@/components/sections/about/MediaAbout';
import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
import { Heart, Star } from "lucide-react";
export default function LandingPage() {
@@ -35,7 +35,7 @@ export default function LandingPage() {
{
name: "Home", id: "#home"},
{
name: "About Me", id: "/about-me"},
name: "About Me", id: "#about"},
{
name: "Services", id: "#services"},
{
@@ -147,23 +147,18 @@ export default function LandingPage() {
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardFive
textboxLayout="default"
<TestimonialCardFifteen
useInvertedBackground={true}
testimonials={[
testimonial="The support from Serene Pathways was invaluable. We learned to communicate better and process our emotions around IVF, which brought us closer. We feel so much more hopeful."
rating={5}
author="Sarah & Mark T."
avatars={[
{
id: "1", name: "Sarah & Mark T.", date: "October 2023", title: "Found Hope and Strength", quote: "The support from Serene Pathways was invaluable. We learned to communicate better and process our emotions around IVF, which brought us closer. We feel so much more hopeful.", tag: "IVF Journey", avatarSrc: "http://img.b2bpic.net/free-photo/indoor-shot-happy-gorgeous-woman-with-relaxed-smile-spending-nice-time-cafe_273609-9043.jpg", avatarAlt: "Smiling woman Sarah", imageSrc: "http://img.b2bpic.net/free-photo/wooden-pier-reflecting-sea-beautiful-sunset-sky_181624-19412.jpg", imageAlt: "Couple walking on beach"},
{
id: "2", name: "David R.", date: "September 2023", title: "A Space to Grieve and Grow", quote: "I wasn't sure what to expect, but the sessions provided a safe space to grieve and understand my feelings. It truly helped me navigate the emotional toll of secondary infertility.", tag: "Secondary Infertility", avatarSrc: "http://img.b2bpic.net/free-photo/successful-senior-businessman-with-gray-beard_1262-3872.jpg", avatarAlt: "Thoughtful man David", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-woman-holding-ukulele_23-2150232640.jpg", imageAlt: "Cozy living room"},
{
id: "3", name: "Emily P.", date: "August 2023", title: "Empowered to Move Forward", quote: "This coaching changed my perspective. I feel more empowered, less anxious, and have a clearer path forward, regardless of the outcome. Highly recommend!", tag: "Conception Anxiety", avatarSrc: "http://img.b2bpic.net/free-photo/mother-with-daughter_1157-8483.jpg", avatarAlt: "Woman with warm smile Emily", imageSrc: "http://img.b2bpic.net/free-photo/plant-growing-from-soil_23-2151729598.jpg", imageAlt: "Blooming flowers"},
{
id: "4", name: "Jessica & Tom L.", date: "July 2023", title: "Stronger as a Couple", quote: "We've been through so much, and this therapy helped us reconnect and support each other without resentment. Our relationship is stronger than ever.", tag: "Relationship Dynamics", avatarSrc: "http://img.b2bpic.net/free-photo/portrait-people-wearing-graphic-eye-makeup_23-2151120780.jpg", avatarAlt: "Smiling couple Jessica and Tom", imageSrc: "http://img.b2bpic.net/free-photo/bamboo-forest-landscape_23-2148121711.jpg", imageAlt: "Light filtering through trees"},
{
id: "5", name: "Amanda G.", date: "June 2023", title: "Found My Inner Resilience", quote: "I struggled with intense anxiety and self-blame. Through TA and coaching, Ive found a deep sense of peace and resilience I never thought possible.", tag: "Emotional Healing", avatarSrc: "http://img.b2bpic.net/free-photo/close-up-cute-tender-brunette-girl-blouse-looking-romantic-smiling-gazing-coquettish-standing-against-white-wall_176420-34079.jpg", avatarAlt: "Thoughtful woman Amanda", imageSrc: "http://img.b2bpic.net/free-photo/3d-mountains-against-cloudy-sunset-sky_1048-18881.jpg", imageAlt: "Sunrise over mountains"},
src: "http://img.b2bpic.net/free-photo/indoor-shot-happy-gorgeous-woman-with-relaxed-smile-spending-nice-time-cafe_273609-9043.jpg", alt: "Smiling woman Sarah"}
]}
title="Hear From Our Clients"
description="Real stories of hope, healing, and resilience from individuals and couples on their fertility paths."
ratingAnimation="slide-up"
avatarsAnimation="slide-up"
ariaLabel="Testimonial section"
/>
</div>
@@ -266,7 +261,7 @@ export default function LandingPage() {
{
title: "Company", items: [
{
label: "About Me", href: "/about-me"},
label: "About Me", href: "#about"},
{
label: "Testimonials", href: "#testimonials"},
{
@@ -295,4 +290,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}