14 Commits

Author SHA1 Message Date
a884eb31c8 Update src/app/page.tsx 2026-04-07 05:07:14 +00:00
83f65e4f1d Merge version_3 into main
Merge version_3 into main
2026-04-07 05:06:27 +00:00
3ebb8c7993 Update src/app/about/page.tsx 2026-04-07 05:06:24 +00:00
9c8bbb35b9 Merge version_3 into main
Merge version_3 into main
2026-04-07 05:05:59 +00:00
c93a62bc93 Update src/app/about/page.tsx 2026-04-07 05:05:56 +00:00
de1c65d92a Merge version_3 into main
Merge version_3 into main
2026-04-07 05:05:32 +00:00
de5d94d51a Update src/app/page.tsx 2026-04-07 05:05:29 +00:00
dff6ce1869 Add src/app/about/page.tsx 2026-04-07 05:05:28 +00:00
40e5f6a88c Merge version_2 into main
Merge version_2 into main
2026-04-07 04:59:40 +00:00
ff25a417e2 Update src/app/page.tsx 2026-04-07 04:59:37 +00:00
164eeae650 Merge version_2 into main
Merge version_2 into main
2026-04-07 04:59:08 +00:00
1d81901007 Update src/app/page.tsx 2026-04-07 04:59:05 +00:00
a91ed9981c Merge version_2 into main
Merge version_2 into main
2026-04-07 04:58:29 +00:00
008e717a20 Update src/app/page.tsx 2026-04-07 04:58:26 +00:00
2 changed files with 187 additions and 242 deletions

86
src/app/about/page.tsx Normal file
View File

@@ -0,0 +1,86 @@
"use client";
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() {
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: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Palante STS"
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboardTestimonial
title="Our Story: Compassion at the Core"
description="Guided by personal experience, Ronnie Konishi founded Palante STS to ensure families never have to face life's biggest transitions alone."
background={{ variant: "sparkles-gradient" }}
testimonials={[]}
/>
</div>
<div id="what-makes-us-different" data-section="what-makes-us-different">
<FeatureCardTwentyEight
title="What Makes Palante Different"
description="We combine empathy with a structured care framework to support families during life's most challenging transitions."
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
features={[
{ id: "d1", title: "Heart-Centered", subtitle: "Empathy first", category: "Methodology", value: "100%" },
{ id: "d2", title: "Structured Care", subtitle: "Proven framework", category: "Methodology", value: "Proven" }
]}
/>
</div>
<div id="what-i-bring" data-section="what-i-bring">
<MetricCardThree
title="What I Bring To Your Family"
description="Core values that drive our commitment to your family's peace of mind."
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
metrics={[
{ id: "b1", icon: ShieldCheck, title: "Integrity", value: "Always" },
{ id: "b2", icon: Heart, title: "Advocacy", value: "Active" }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Palante STS"
columns={[{ items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] }]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -2,14 +2,14 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; 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 ContactText from '@/components/sections/contact/ContactText';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { ShieldCheck, Heart, Users, BrainCircuit, Target, BookOpen, Clock } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -29,243 +29,102 @@ export default function LandingPage() {
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay <NavbarLayoutFloatingOverlay
navItems={[ navItems={[
{ { name: "Home", id: "hero" },
name: "Home", { name: "Support", id: "pain-points" },
id: "hero", { name: "Services", id: "services" },
}, { name: "Process", id: "how-it-works" },
{ { name: "Trust", id: "trust" },
name: "Our Process", { name: "Contact", id: "contact" },
id: "about",
},
{
name: "Why Palante",
id: "features",
},
{
name: "Testimonials",
id: "testimonials",
},
{
name: "Contact",
id: "contact",
},
]} ]}
brandName="Palante STS" brandName="Palante STS"
/> />
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroLogoBillboard <HeroOverlayTestimonial
background={{ title="Helping Aging Parents? You're Not Alone."
variant: "plain", 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 Process", href: "#how-it-works" }]}
logoText="Palante STS" testimonials={[{ name: "Sarah M.", handle: "@sarahm", testimonial: "Palante gave us the roadmap we didn't know we needed during a stressful time.", rating: 5 }]}
description="Helping families navigate the complexities of senior living transitions with calm, structured expertise and compassionate guidance."
buttons={[
{
text: "Schedule Consultation",
href: "#contact",
},
]}
mediaAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/grandparents-learning-use-technology_23-2149402581.jpg" imageSrc="http://img.b2bpic.net/free-photo/grandparents-learning-use-technology_23-2149402581.jpg"
imageAlt="Compassionate senior transition support"
/> />
</div> </div>
<div id="about" data-section="about"> <div id="pain-points" data-section="pain-points">
<MetricSplitMediaAbout <SplitAbout
useInvertedBackground={false} title="The Weight of Managing Parents' Care"
title="Your Trusted Guide" description="Balancing your life while managing your aging parents' transition can lead to severe burnout, decision fatigue, and family friction."
description="Moving out of a longtime family home is more than a logistical challenge; it is a significant life transition. We provide the structure needed to make these moves with dignity." bulletPoints={[
metrics={[ { title: "Overwhelming Complexity", description: "Navigating healthcare and housing systems is a full-time job." },
{ { title: "Emotional Strain", description: "Managing the guilt and worry of life changes." },
value: "20+", { title: "Family Tension", description: "Disagreeing on the best path forward with siblings." },
title: "Years Experience", { title: "Loss of Time", description: "Sacrificing your career and personal time for logistics." }
},
{
value: "500+",
title: "Families Helped",
},
{
value: "100%",
title: "Personalized Care",
},
]} ]}
mediaAnimation="slide-up"
metricsAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/senior-couple-holding-hands-together_53876-25301.jpg" imageSrc="http://img.b2bpic.net/free-photo/senior-couple-holding-hands-together_53876-25301.jpg"
imageAlt="Professional moving support" textboxLayout="split"
useInvertedBackground={false}
/> />
</div> </div>
<div id="features" data-section="features"> <div id="services" data-section="services">
<FeatureCardTwelve <FeatureCardTwentySeven
title="How Palante Helps You"
description="We translate the chaos of senior transitions into a clear, manageable plan."
animationType="slide-up" animationType="slide-up"
textboxLayout="split" textboxLayout="split"
useInvertedBackground={true} useInvertedBackground={true}
features={[ features={[
{ { id: "s1", title: "Strategic Planning", descriptions: ["Expert roadmapping for care and living needs."], imageSrc: "" },
id: "f1", { id: "s2", title: "Logistical Management", descriptions: ["Coordinating movers, decluttering, and floor planning."], imageSrc: "" },
label: "Compassion", { id: "s3", title: "Communication Facilitation", descriptions: ["Mediating family discussions to reach consensus."], imageSrc: "" }
title: "Deep Listening",
items: [
"We listen to the resident's concerns first.",
"Emotional support for the entire family.",
"Addressing the anxiety of change.",
],
},
{
id: "f2",
label: "Expertise",
title: "Operational Precision",
items: [
"Logistics and move management.",
"Decluttering and downsizing strategy.",
"Professional referral coordination.",
],
},
{
id: "f3",
label: "Strategy",
title: "Family Alignment",
items: [
"Mediation and family meeting facilitation.",
"Shared decision-making structure.",
"Clear timelines and expectations.",
],
},
]} ]}
title="Structured Solutions"
description="We replace overwhelm with clarity."
/> />
</div> </div>
<div id="testimonials" data-section="testimonials"> <div id="trust" data-section="trust">
<TestimonialCardOne <MetricCardOne
animationType="slide-up" title="Why Families Trust Palante"
textboxLayout="split" description="Experience-backed support for life's most delicate transitions."
gridVariant="uniform-all-items-equal" gridVariant="bento-grid"
animationType="blur-reveal"
textboxLayout="default"
useInvertedBackground={false} useInvertedBackground={false}
testimonials={[ metrics={[
{ { id: "t1", value: "20+", title: "Years Experience", description: "In senior transitions.", icon: ShieldCheck },
id: "t1", { id: "t2", value: "500+", title: "Families Assisted", description: "Successfully transitioned.", icon: Users },
name: "Jane D.", { id: "t3", value: "100%", title: "Personalized Support", description: "Tailored to your family goals.", icon: Heart },
role: "Daughter", { id: "t4", value: "Proven", title: "Framework", description: "A reliable system that works.", icon: BookOpen }
company: "Family Support",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-senior-gray-haired-smiley-woman_23-2149082567.jpg",
},
{
id: "t2",
name: "Mark S.",
role: "Son",
company: "Client",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/positive-human-emotions-reaction-portrait-carefree-happy-senior-woman-with-dyed-stylish-short-hair-looking-camera-with-broad-cheerful-smile-wearing-hoodie-choosing-active-lifestyle_343059-2281.jpg",
},
{
id: "t3",
name: "Sarah L.",
role: "Daughter",
company: "Client",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-attractive-stylish-senior-caucasian-female-pensioner-with-pixie-short-hairstyle-spending-day-home-standing-living-room-wearing-elegant-blue-dress-smiling-happily_343059-2673.jpg",
},
{
id: "t4",
name: "Robert K.",
role: "Client",
company: "Resident",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-portrait-senior-woman_23-2149207235.jpg",
},
{
id: "t5",
name: "Linda M.",
role: "Daughter",
company: "Client",
rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/portrait-senior-woman_23-2150767025.jpg",
},
]} ]}
title="Families We Support"
description="Read how we turned daunting transitions into manageable steps."
/> />
</div> </div>
<div id="faq" data-section="faq"> <div id="lead-magnet" data-section="lead-magnet">
<FaqBase <ContactText
textboxLayout="split" text="Ready to take the next step? Download our free guide: '7 Signs Your Loved One is Ready for a Transition.'"
useInvertedBackground={true} animationType="background-highlight"
faqs={[ buttons={[{ text: "Download Guide", href: "#contact" }]}
{ background={{ variant: "sparkles-gradient" }}
id: "q1", useInvertedBackground={false}
title: "When is the right time to start?",
content: "Early planning is key to keeping the transition calm.",
},
{
id: "q2",
title: "How do you help my parent feel heard?",
content: "Our process centers on resident agency and comfort.",
},
{
id: "q3",
title: "Do you work with our lawyers?",
content: "Yes, we coordinate seamlessly with all trusted partners.",
},
]}
title="Common Questions"
description="Addressing your concerns early."
faqsAnimation="slide-up"
/> />
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactText <ContactText
useInvertedBackground={false} text="Lets discuss your family's specific situation."
background={{ animationType="entrance-slide"
variant: "plain", buttons={[{ text: "Schedule Free Consultation", href: "mailto:hello@palantests.com" }]}
}} background={{ variant: "gradient-bars" }}
text="Ready to begin your transition journey with expert support? We offer a free initial consultation." useInvertedBackground={true}
buttons={[
{
text: "Book Consultation",
href: "mailto:hello@palantests.com",
},
]}
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterLogoEmphasis <FooterLogoEmphasis
columns={[
{
items: [
{
label: "Home",
href: "#hero",
},
{
label: "Our Process",
href: "#about",
},
],
},
{
items: [
{
label: "Contact",
href: "#contact",
},
{
label: "Privacy Policy",
href: "#",
},
],
},
]}
logoText="Palante STS" logoText="Palante STS"
columns={[
{ items: [{ label: "Home", href: "#hero" }, { label: "Services", href: "#services" }] },
{ items: [{ label: "Support", href: "#pain-points" }, { label: "Contact", href: "#contact" }] }
]}
/> />
</div> </div>
</ReactLenis> </ReactLenis>