3 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
68448d202c Update src/app/page.tsx 2026-05-14 21:15:03 +00:00

View File

@@ -10,6 +10,7 @@ import HeroSplitTestimonial from '@/components/sections/hero/HeroSplitTestimonia
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import TimelineProcessFlow from '@/components/cardStack/layouts/timelines/TimelineProcessFlow';
import BlurBottomBackground from '@/components/background/BlurBottomBackground';
export default function LandingPage() {
const handleCall = () => window.location.href = "tel:7542544054";
@@ -39,16 +40,21 @@ export default function LandingPage() {
/>
</div>
<div id="hero" data-section="hero">
<HeroSplitTestimonial
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 id="hero" data-section="hero" className="relative">
<BlurBottomBackground className="absolute inset-0 opacity-40 blur-3xl pointer-events-none" />
<div className="absolute inset-0 z-0">
<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" />
</div>
<div className="relative z-10">
<HeroSplitTestimonial
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 id="services" data-section="services">
@@ -74,11 +80,11 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="default"
items={[
{ content: "1. A Warm Welcome: Simply reach out, and we'll listen to your needs.", media: "📁", reverse: false },
{ content: "2. Secure & Private: Upload your documents through our encrypted, protected portal.", media: "🔒", reverse: true },
{ content: "3. Careful Preparation: We draft your documents with accuracy and attention to detail.", media: "✍️", reverse: false },
{ content: "4. Review Together: You review every detail with confidence before finalizing.", media: "✅", reverse: true },
{ content: "5. Confident Next Steps: Well provide clear guidance for your final actions.", media: "🚀", reverse: false }
{ content: "1. Reach Out Anytime: Call, text, email, or fill out the contact form to get started.", media: "📁", reverse: false },
{ content: "2. Send Your Information Securely: Upload your documents safely and privately from anywhere in Florida.", media: "🔒", reverse: true },
{ content: "3. We Prepare Everything Carefully: Your documents are prepared professionally with attention to detail and care.", media: "✍️", reverse: false },
{ content: "4. Review Everything With Confidence: Review everything before signing or filing.", media: "✅", reverse: true },
{ content: "5. Move Forward With Peace of Mind: Clear next-step guidance and support throughout the process.", media: "🚀", reverse: false }
]}
/>
</div>
@@ -129,4 +135,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}