9 Commits

Author SHA1 Message Date
f00b88c734 Merge version_6 into main
Merge version_6 into main
2026-05-14 21:08:00 +00:00
a5e31caf99 Update src/app/page.tsx 2026-05-14 21:07:57 +00:00
61d952c285 Merge version_6 into main
Merge version_6 into main
2026-05-14 21:05:04 +00:00
7fa59d0619 Update src/app/page.tsx 2026-05-14 21:04:58 +00:00
fa9640b4dc Merge version_5 into main
Merge version_5 into main
2026-05-14 21:02:26 +00:00
8eec83b40c Update src/app/page.tsx 2026-05-14 21:02:23 +00:00
9f830b5c33 Merge version_5 into main
Merge version_5 into main
2026-05-14 21:02:04 +00:00
561f3c754a Update src/app/page.tsx 2026-05-14 21:02:01 +00:00
88c4201ec9 Merge version_4 into main
Merge version_4 into main
2026-05-14 21:01:21 +00:00

View File

@@ -12,6 +12,7 @@ import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
import TimelineProcessFlow from '@/components/cardStack/layouts/timelines/TimelineProcessFlow';
export default function LandingPage() {
const handleCall = () => window.location.href = "tel:7542544054";
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
@@ -40,14 +41,13 @@ export default function LandingPage() {
<div id="hero" data-section="hero">
<HeroSplitTestimonial
title="Supporting You Through Life's Transitions"
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."
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" }}
imageSrc="https://img.b2bpic.net/free-vector/abstract-business-document-concept_114360-6395.jpg"
imageAlt="Document preparation concept"
testimonials={[]}
mediaAnimation="blur-reveal"
buttons={[{ text: "View Services", href: "#services" }, { text: "Contact Us", href: "#contact" }]}
buttons={[{ text: "View Services", href: "#services" }, { text: "Contact Us", onClick: handleCall }]}
/>
</div>
@@ -56,13 +56,13 @@ export default function LandingPage() {
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
title="Compassionate Support, Affordable Care"
description="We believe quality assistance shouldn't be cost-prohibitive. Our flat-fee pricing is designed to keep our services accessible, helping you navigate your documentation with complete peace of mind."
title="Here for You, Every Step of the Way"
description="We pride ourselves on offering a personal, welcoming experience. We handle the paperwork so you can focus on what truly matters—your family and your future."
features={[
{ title: "Family Transitions", description: "Thoughtful assistance for uncontested divorce, custody, and support arrangements, starting at $250.", imageSrc: "https://img.b2bpic.net/free-vector/family-law-concept_23-2148590039.jpg" },
{ title: "Residential Stability", description: "Clear, reliable guidance for eviction notices and filings, starting at $199.", imageSrc: "https://img.b2bpic.net/free-vector/eviction-notice-concept_23-2148542329.jpg" },
{ title: "Estate & Future Planning", description: "Gentle, supportive preparation for wills, power of attorney, and healthcare directives, starting at $125.", imageSrc: "https://img.b2bpic.net/free-vector/estate-planning-checklist_1284-42661.jpg" },
{ title: "Real Estate Documentation", description: "Precise preparation for mortgage and property-related documents, starting at $150.", imageSrc: "https://img.b2bpic.net/free-vector/real-estate-document-folder_23-2148558435.jpg" }
{ title: "Family Transitions", description: "Thoughtful assistance for uncontested divorce, custody, and support arrangements, starting at $250.", imageSrc: "https://img.b2bpic.net/free-vector/family-law-concept_23-2148590039.jpg", buttons: [{ text: "Get in Touch", onClick: handleCall }] },
{ title: "Residential Stability", description: "Clear, reliable guidance for eviction notices and filings, starting at $199.", imageSrc: "https://img.b2bpic.net/free-vector/eviction-notice-concept_23-2148542329.jpg", buttons: [{ text: "Get in Touch", onClick: handleCall }] },
{ title: "Estate & Future Planning", description: "Gentle, supportive preparation for wills, power of attorney, and healthcare directives, starting at $125.", imageSrc: "https://img.b2bpic.net/free-vector/estate-planning-checklist_1284-42661.jpg", buttons: [{ text: "Get in Touch", onClick: handleCall }] },
{ title: "Real Estate Documentation", description: "Precise preparation for mortgage and property-related documents, starting at $150.", imageSrc: "https://img.b2bpic.net/free-vector/real-estate-document-folder_23-2148558435.jpg", buttons: [{ text: "Get in Touch", onClick: handleCall }] }
]}
/>
</div>
@@ -114,7 +114,7 @@ export default function LandingPage() {
<ContactText
background={{ variant: "gradient-bars" }}
text="If you're ready to take the next step, we're here to walk alongside you. Please reach out, and let us help you handle your paperwork with confidence and peace of mind."
buttons={[{ text: "Get in Touch" }]}
buttons={[{ text: "Get in Touch", onClick: handleCall }]}
useInvertedBackground={false}
/>
</div>
@@ -129,4 +129,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}