31 Commits

Author SHA1 Message Date
e55c4d6c38 Merge version_11 into main
Merge version_11 into main
2026-04-07 06:16:21 +00:00
3104881c3a Update src/app/page.tsx 2026-04-07 06:16:15 +00:00
55bbf3f3be Merge version_11 into main
Merge version_11 into main
2026-04-07 06:15:49 +00:00
0174d4f068 Update src/app/page.tsx 2026-04-07 06:15:43 +00:00
3501b7accc Merge version_10 into main
Merge version_10 into main
2026-04-07 05:50:09 +00:00
0349dc09d3 Update src/app/page.tsx 2026-04-07 05:50:03 +00:00
afcae3bc1e Merge version_10 into main
Merge version_10 into main
2026-04-07 05:49:42 +00:00
63c511bd47 Update src/app/page.tsx 2026-04-07 05:49:36 +00:00
154b575662 Merge version_9 into main
Merge version_9 into main
2026-04-07 05:43:38 +00:00
eb0c114989 Update src/app/page.tsx 2026-04-07 05:43:35 +00:00
af9bd8992b Merge version_9 into main
Merge version_9 into main
2026-04-07 05:43:09 +00:00
fec2c31752 Update src/app/page.tsx 2026-04-07 05:43:03 +00:00
67057898c6 Merge version_8 into main
Merge version_8 into main
2026-04-07 05:15:25 +00:00
c5d0a2d8c2 Update src/app/contact/page.tsx 2026-04-07 05:15:22 +00:00
b807ea66b0 Merge version_7 into main
Merge version_7 into main
2026-04-07 05:14:23 +00:00
36b7120a3a Update src/app/contact/page.tsx 2026-04-07 05:14:17 +00:00
30236c5223 Merge version_7 into main
Merge version_7 into main
2026-04-07 05:13:53 +00:00
2ef58d5c87 Update src/app/services/page.tsx 2026-04-07 05:13:50 +00:00
88dbd19533 Update src/app/page.tsx 2026-04-07 05:13:50 +00:00
5e644a1ca3 Update src/app/how-it-works/page.tsx 2026-04-07 05:13:49 +00:00
28c4d956c0 Add src/app/contact/page.tsx 2026-04-07 05:13:49 +00:00
277f452a3a Update src/app/about/page.tsx 2026-04-07 05:13:48 +00:00
b1a8c2c47c Merge version_6 into main
Merge version_6 into main
2026-04-07 05:12:44 +00:00
2dda4db4d7 Update src/app/how-it-works/page.tsx 2026-04-07 05:12:38 +00:00
8892c0cd85 Merge version_6 into main
Merge version_6 into main
2026-04-07 05:12:06 +00:00
a624af9671 Update src/app/how-it-works/page.tsx 2026-04-07 05:12:00 +00:00
6bf8219620 Merge version_6 into main
Merge version_6 into main
2026-04-07 05:11:34 +00:00
9ee0036b4d Update src/app/page.tsx 2026-04-07 05:11:31 +00:00
862375af45 Add src/app/how-it-works/page.tsx 2026-04-07 05:11:31 +00:00
6453cddcfd Merge version_5 into main
Merge version_5 into main
2026-04-07 05:10:17 +00:00
bb8dd906e2 Merge version_5 into main
Merge version_5 into main
2026-04-07 05:09:45 +00:00
5 changed files with 265 additions and 51 deletions

View File

@@ -4,11 +4,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
import TextAbout from '@/components/sections/about/TextAbout';
import FeatureCardTwentyEight from '@/components/sections/feature/FeatureCardTwentyEight';
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import { Heart, ShieldCheck } from "lucide-react";
export default function AboutPage() {
@@ -30,7 +28,8 @@ export default function AboutPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Services", id: "/services" },
{ name: "How It Works", id: "/how-it-works" },
{ name: "Contact", id: "/contact" },
]}
brandName="Palante STS"
@@ -77,10 +76,10 @@ export default function AboutPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Palante STS"
columns={[{ items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }]}
columns={[{ items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "How It Works", href: "/how-it-works" }, { label: "Contact", href: "/contact" }] }]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

89
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,89 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import ContactText from '@/components/sections/contact/ContactText';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="medium"
sizing="largeSmallSizeLargeTitles"
background="grid"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="radial-glow"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "How It Works", id: "/how-it-works" },
{ name: "Contact", id: "/contact" },
]}
brandName="Palante STS"
/>
</div>
<div id="hero" data-section="hero">
<HeroOverlayTestimonial
title="Let's Start the Conversation"
description="We're here to listen, support, and guide your family through life's biggest transitions—on your own timeline."
testimonials={[]}
/>
</div>
<div id="reassurance-1" data-section="reassurance-1">
<ContactText
text="No Pressure, No Obligation"
animationType="reveal-blur"
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={true}
className="py-8"
/>
</div>
<div id="contact-form" data-section="contact-form">
<ContactSplitForm
title="Get In Touch"
description="Whether you have a specific question or just need to discuss a transition situation, we're here to help. Fill out the details below and we'll be in touch."
inputs={[
{ name: "name", type: "text", placeholder: "Your Name", required: true },
{ name: "email", type: "email", placeholder: "Your Email", required: true }
]}
textarea={{ name: "message", placeholder: "How can we help your family?", rows: 4, required: true }}
useInvertedBackground={false}
mediaPosition="right"
/>
</div>
<div id="reassurance-2" data-section="reassurance-2">
<ContactText
text="You Don't Have to Do This Alone"
animationType="background-highlight"
background={{ variant: "gradient-bars" }}
useInvertedBackground={true}
className="py-8"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Palante STS"
columns={[{ items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "How It Works", href: "/how-it-works" }, { label: "Contact", href: "/contact" }] }]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -0,0 +1,118 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
import SplitAbout from '@/components/sections/about/SplitAbout';
import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import ContactText from '@/components/sections/contact/ContactText';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
export default function HowItWorksPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="medium"
sizing="largeSmallSizeLargeTitles"
background="grid"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="radial-glow"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "How It Works", id: "/how-it-works" },
{ name: "Contact", id: "/contact" },
]}
brandName="Palante STS"
/>
</div>
<div id="hero" data-section="hero">
<HeroOverlayTestimonial
title="A Clear Process for a Difficult Transition"
description="Navigating senior transitions doesn't have to feel overwhelming. Our structured approach brings clarity to every step."
testimonials={[]}
/>
</div>
<div id="intro" data-section="intro">
<SplitAbout
title="You Dont Have to Figure This Out Alone"
description="We translate the complexity of aging transitions into a manageable, step-by-step roadmap tailored specifically to your family's needs."
bulletPoints={[]}
textboxLayout="split"
useInvertedBackground={false}
/>
</div>
<div id="process" data-section="process">
<FeatureCardTwentyNine
title="Our 5-Step Process"
animationType="slide-up"
textboxLayout="split"
gridVariant="two-columns-alternating-heights"
description="Five clear steps to guide your transition."
useInvertedBackground={false}
features={[
{ title: "We Listen & Assess", description: "Understanding your family's unique dynamics and goals.", imageSrc: "/placeholder.png", titleIconSrc: "", buttonText: "Learn More" },
{ title: "We Create a Personalized Transition Plan", description: "Developing a structured path that keeps everyone informed.", imageSrc: "/placeholder.png", titleIconSrc: "", buttonText: "Learn More" },
{ title: "We Coordinate the Transition", description: "Managing the logistical details from start to finish.", imageSrc: "/placeholder.png", titleIconSrc: "", buttonText: "Learn More" },
{ title: "We Support the Next Housing Decision", description: "Helping you find the right fit with confidence.", imageSrc: "/placeholder.png", titleIconSrc: "", buttonText: "Learn More" },
{ title: "We Help You Move Forward", description: "Ensuring stability and comfort for the road ahead.", imageSrc: "/placeholder.png", titleIconSrc: "", buttonText: "Learn More" }
]}
/>
</div>
<div id="feelings" data-section="feelings">
<SplitAbout
title="What Families Often Feel Before They Reach Out"
description="Overwhelmed by decisions, stressed by family disagreements, or unsure of where to start—you aren't the first, and we can help."
bulletPoints={[]}
textboxLayout="split"
useInvertedBackground={false}
/>
</div>
<div id="faq" data-section="faq">
<FaqDouble
title="Mini FAQ"
description="Answers to common questions about our process."
faqsAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
faqs={[
{ id: "q1", title: "How do we get started?", content: "Simply reach out through our contact form and we will schedule an initial call." },
{ id: "q2", title: "Can you mediate family discussions?", content: "Yes, we specialize in helping families reach consensus during transition periods." }
]}
/>
</div>
<div id="cta" data-section="cta">
<ContactText
text="Take the first step toward a clearer transition."
buttons={[{ text: "Schedule Your Free Consultation", href: "/contact" }]}
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Palante STS"
columns={[{ items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "How It Works", href: "/how-it-works" }, { label: "Contact", href: "/contact" }] }]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -3,13 +3,12 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
import SplitAbout from '@/components/sections/about/SplitAbout';
import FeatureCardTwentySeven from '@/components/sections/feature/FeatureCardTwentySeven';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
import ContactText from '@/components/sections/contact/ContactText';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { ShieldCheck, Heart, Users, BookOpen } from "lucide-react";
import { Check } from "lucide-react";
export default function LandingPage() {
return (
@@ -29,62 +28,70 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "hero" },
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "contact" },
{ name: "How It Works", id: "/how-it-works" },
{ name: "Contact", id: "/contact" },
]}
brandName="Palante STS"
/>
</div>
<div id="hero" data-section="hero">
<HeroOverlayTestimonial
title="Helping Aging Parents? You're Not Alone."
description="Palante STS provides the structure and expert guidance to help adult children manage senior living transitions with confidence."
buttons={[{ text: "Schedule Free Consultation", href: "#contact" }, { text: "Our Services", href: "/services" }]}
testimonials={[{ name: "Sarah M.", handle: "@sarahm", testimonial: "Palante gave us the roadmap we didn't know we needed during a stressful time.", rating: 5 }]}
imageSrc="http://img.b2bpic.net/free-photo/grandparents-learning-use-technology_23-2149402581.jpg"
/>
</div>
<div id="services" data-section="services">
<FeatureCardTwentySeven
title="How Palante Helps You"
description="We translate the chaos of senior transitions into a clear, manageable plan."
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={true}
features={[
{ id: "s1", title: "Strategic Planning", descriptions: ["Expert roadmapping for care and living needs."], imageSrc: "" },
{ id: "s2", title: "Logistical Management", descriptions: ["Coordinating movers, decluttering, and floor planning."], imageSrc: "" },
{ id: "s3", title: "Communication Facilitation", descriptions: ["Mediating family discussions to reach consensus."], imageSrc: "" }
<HeroSplitDualMedia
title="Helping Your Aging Parent Transition — Without Carrying It All Alone"
description="You want the best for your parents, but the logistics of senior transitions are overwhelming. Palante STS steps in to provide professional, clear-headed management so you can get back to being a son or daughter, not just a caregiver."
background={{ variant: "sparkles-gradient" }}
tag="Compassionate Transition Experts"
buttons={[{ text: "Get Your Free Consultation", href: "/contact" }]}
rating={5}
ratingText="Trusted by 500+ families"
mediaItems={[
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BgAzSnGoyjp2WRFEpWFU41xUOw/uploaded-1775540960714-lwoqutv5.jpg?_wi=1", imageAlt: "Supportive family environment" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BgAzSnGoyjp2WRFEpWFU41xUOw/uploaded-1775540960714-zrqufly0.jpg?_wi=1", imageAlt: "Professional guidance" }
]}
/>
</div>
<div id="trust" data-section="trust">
<MetricCardOne
<MetricCardEleven
title="Why Families Trust Palante"
description="Experience-backed support for life's most delicate transitions."
gridVariant="bento-grid"
description="We replace the stress of uncertainty with a calm, proven path forward."
animationType="blur-reveal"
textboxLayout="default"
textboxLayout="split-description"
useInvertedBackground={false}
metrics={[
{ id: "t1", value: "20+", title: "Years Experience", description: "In senior transitions.", icon: ShieldCheck },
{ id: "t2", value: "500+", title: "Families Assisted", description: "Successfully transitioned.", icon: Users },
{ id: "t3", value: "100%", title: "Personalized Support", description: "Tailored to your family goals.", icon: Heart },
{ id: "t4", value: "Proven", title: "Framework", description: "A reliable system that works.", icon: BookOpen }
{ id: "t1", value: "Heart-Centered", title: "Human-First Approach", description: "We listen to your specific family dynamics before offering a single piece of advice.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BgAzSnGoyjp2WRFEpWFU41xUOw/uploaded-1775540960715-sq75umhv.jpg?_wi=1" },
{ id: "t2", value: "Unbiased", title: "Neutral Advocacy", description: "We act as the bridge between family members to resolve disagreements without pressure.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BgAzSnGoyjp2WRFEpWFU41xUOw/uploaded-1775540960715-ye5bl9ut.jpg?_wi=1" },
{ id: "t3", value: "Proven", title: "Structured Clarity", description: "Complex transitions broken down into manageable, actionable steps that everyone understands.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BgAzSnGoyjp2WRFEpWFU41xUOw/uploaded-1775540960715-0ocqg1cp.jpg?_wi=1" },
{ id: "t4", value: "Reliable", title: "Complete Logistics", description: "From downsizing to final move-in, we manage the heavy lifting so you don't have to.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BgAzSnGoyjp2WRFEpWFU41xUOw/uploaded-1775540960714-lwoqutv5.jpg?_wi=2" }
]}
/>
</div>
<div id="services" data-section="services">
<FeatureCardOne
title="How Palante Helps Your Family"
description="Our services are designed to remove the daily stress of transition management, allowing you to focus on your family's well-being."
animationType="slide-up"
textboxLayout="split"
gridVariant="two-columns-alternating-heights"
useInvertedBackground={false}
features={[
{ title: "Personalized Transition Roadmaps", description: "A tailored strategy that clarifies your goals and outlines exactly what needs to happen to reach them safely.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BgAzSnGoyjp2WRFEpWFU41xUOw/uploaded-1775540960714-zrqufly0.jpg?_wi=2" },
{ title: "Family Consensus Facilitation", description: "Helping all family members align on care needs and living arrangements, ensuring everyone feels heard and respected.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BgAzSnGoyjp2WRFEpWFU41xUOw/uploaded-1775540960715-sq75umhv.jpg?_wi=2" },
{ title: "Professional Move Management", description: "Comprehensive oversight for moving day, managing movers, packing, and settling into a new space with care and precision.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BgAzSnGoyjp2WRFEpWFU41xUOw/uploaded-1775540960715-ye5bl9ut.jpg?_wi=2" },
{ title: "Downsizing & Organization", description: "Supportive assistance in simplifying your parents' current home and preparing belongings for the next transition.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BgAzSnGoyjp2WRFEpWFU41xUOw/uploaded-1775540960714-lwoqutv5.jpg?_wi=1" },
{ title: "Ongoing Care Coordination", description: "Consistent support to monitor progress and adjust the plan as your family's needs evolve over time.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BgAzSnGoyjp2WRFEpWFU41xUOw/uploaded-1775540960715-0ocqg1cp.jpg?_wi=2" }
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactText
text="Lets discuss your family's specific situation."
animationType="entrance-slide"
buttons={[{ text: "Schedule Free Consultation", href: "mailto:hello@palantests.com" }]}
background={{ variant: "gradient-bars" }}
text="No-pressure, warm support when you need it most. Get in touch to discuss your situation—there is never any obligation to proceed."
buttons={[{ text: "Schedule a No-Pressure Chat", href: "/contact" }]}
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={true}
/>
</div>
@@ -93,12 +100,12 @@ export default function LandingPage() {
<FooterLogoEmphasis
logoText="Palante STS"
columns={[
{ items: [{ label: "Home", href: "#hero" }, { label: "Services", href: "/services" }] },
{ items: [{ label: "Contact", href: "#contact" }] }
{ items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "How It Works", href: "/how-it-works" }] },
{ items: [{ label: "Contact", href: "/contact" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -30,7 +30,8 @@ export default function ServicesPage() {
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "/" },
{ name: "Services", id: "#services" },
{ name: "Services", id: "/services" },
{ name: "How It Works", id: "/how-it-works" },
{ name: "Contact", id: "/contact" },
]}
brandName="Palante STS"
@@ -101,7 +102,7 @@ export default function ServicesPage() {
<div id="cta" data-section="cta">
<ContactText
text="Ready to get started?"
buttons={[{ text: "Book a Consultation", href: "mailto:hello@palantests.com" }]}
buttons={[{ text: "Book a Consultation", href: "/contact" }]}
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
/>
@@ -110,10 +111,10 @@ export default function ServicesPage() {
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Palante STS"
columns={[{ items: [{ label: "Home", href: "/" }, { label: "Services", href: "#services" }] }]}
columns={[{ items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "How It Works", href: "/how-it-works" }, { label: "Contact", href: "/contact" }] }]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}