2 Commits

Author SHA1 Message Date
140f4642ea Update src/app/page.tsx 2026-05-14 21:17:26 +00:00
e5965a79e7 Merge version_8 into main
Merge version_8 into main
2026-05-14 21:15:06 +00:00

View File

@@ -10,6 +10,7 @@ import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonia
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import TimelineProcessFlow from '@/components/cardStack/layouts/timelines/TimelineProcessFlow'; import TimelineProcessFlow from '@/components/cardStack/layouts/timelines/TimelineProcessFlow';
import BlurBottomBackground from '@/components/background/BlurBottomBackground';
export default function LandingPage() { export default function LandingPage() {
const handleCall = () => window.location.href = "tel:7542544054"; const handleCall = () => window.location.href = "tel:7542544054";
@@ -39,15 +40,21 @@ export default function LandingPage() {
/> />
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero" className="relative">
<HeroSplitTestimonial <BlurBottomBackground className="absolute inset-0 opacity-40 blur-3xl pointer-events-none" />
title="“The Only Help You Need to Move Forward”" <div className="absolute inset-0 z-0">
description="Professional document preparation for South Florida individuals and families. We offer a transparent, stress-free alternative to traditional legal services, helping you manage life's transitions with dignity and peace of mind." <img src="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AY6OUkkDWDB9f8RXWuG5JkBXgc/uploaded-1778793435307-c918cxmh.jpg" alt="Background" className="w-full h-full object-cover blur-2xl" />
background={{ variant: "plain" }} </div>
testimonials={[]} <div className="relative z-10">
mediaAnimation="blur-reveal" <HeroSplitTestimonial
buttons={[{ text: "View Services", href: "#services" }, { text: "Contact Us", onClick: handleCall }]} title="“The Only Help You Need to Move Forward”"
/> description="Professional document preparation for South Florida individuals and families. We offer a transparent, stress-free alternative to traditional legal services, helping you manage life's transitions with dignity and peace of mind."
background={{ variant: "plain" }}
testimonials={[]}
mediaAnimation="blur-reveal"
buttons={[{ text: "View Services", href: "#services" }, { text: "Contact Us", onClick: handleCall }]}
/>
</div>
</div> </div>
<div id="services" data-section="services"> <div id="services" data-section="services">
@@ -128,4 +135,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }