18 Commits

Author SHA1 Message Date
b5b3dadb50 Update src/app/services/page.tsx 2026-04-07 05:10:11 +00:00
14e212c533 Add src/app/services/page.tsx 2026-04-07 05:09:42 +00:00
e1b05fad6d Update src/app/page.tsx 2026-04-07 05:09:42 +00:00
0a3a27c2c4 Merge version_4 into main
Merge version_4 into main
2026-04-07 05:07:17 +00:00
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
3 changed files with 280 additions and 245 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 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 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, BookOpen } from "lucide-react";
export default function LandingPage() {
return (
@@ -26,249 +26,79 @@ export default function LandingPage() {
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home",
id: "hero",
},
{
name: "Our Process",
id: "about",
},
{
name: "Why Palante",
id: "features",
},
{
name: "Testimonials",
id: "testimonials",
},
{
name: "Contact",
id: "contact",
},
]}
brandName="Palante STS"
/>
</div>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Home", id: "hero" },
{ name: "Services", id: "/services" },
{ name: "Contact", id: "contact" },
]}
brandName="Palante STS"
/>
</div>
<div id="hero" data-section="hero">
<HeroLogoBillboard
background={{
variant: "plain",
}}
logoText="Palante STS"
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"
imageAlt="Compassionate senior transition support"
/>
</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="about" data-section="about">
<MetricSplitMediaAbout
useInvertedBackground={false}
title="Your Trusted Guide"
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."
metrics={[
{
value: "20+",
title: "Years Experience",
},
{
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"
imageAlt="Professional moving support"
/>
</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: "" }
]}
/>
</div>
<div id="features" data-section="features">
<FeatureCardTwelve
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={true}
features={[
{
id: "f1",
label: "Compassion",
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 id="trust" data-section="trust">
<MetricCardOne
title="Why Families Trust Palante"
description="Experience-backed support for life's most delicate transitions."
gridVariant="bento-grid"
animationType="blur-reveal"
textboxLayout="default"
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 }
]}
/>
</div>
<div id="testimonials" data-section="testimonials">
<TestimonialCardOne
animationType="slide-up"
textboxLayout="split"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
testimonials={[
{
id: "t1",
name: "Jane D.",
role: "Daughter",
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 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" }}
useInvertedBackground={true}
/>
</div>
<div id="faq" data-section="faq">
<FaqBase
textboxLayout="split"
useInvertedBackground={true}
faqs={[
{
id: "q1",
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 id="contact" data-section="contact">
<ContactText
useInvertedBackground={false}
background={{
variant: "plain",
}}
text="Ready to begin your transition journey with expert support? We offer a free initial consultation."
buttons={[
{
text: "Book Consultation",
href: "mailto:hello@palantests.com",
},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
columns={[
{
items: [
{
label: "Home",
href: "#hero",
},
{
label: "Our Process",
href: "#about",
},
],
},
{
items: [
{
label: "Contact",
href: "#contact",
},
{
label: "Privacy Policy",
href: "#",
},
],
},
]}
logoText="Palante STS"
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Palante STS"
columns={[
{ items: [{ label: "Home", href: "#hero" }, { label: "Services", href: "/services" }] },
{ items: [{ label: "Contact", href: "#contact" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}

119
src/app/services/page.tsx Normal file
View File

@@ -0,0 +1,119 @@
"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 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 { Heart, BrainCircuit, Users, BookOpen } from "lucide-react";
export default function ServicesPage() {
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: "Contact", id: "/contact" },
]}
brandName="Palante STS"
/>
</div>
<div id="hero" data-section="hero">
<HeroOverlayTestimonial
title="Expert Transition Support"
description="Comprehensive services tailored to simplify complex life transitions."
testimonials={[]}
/>
</div>
<div id="intro" data-section="intro">
<SplitAbout
title="You Don't Need Five Different People to Help You Through This"
description="We integrate everything you need into one seamless support framework."
textboxLayout="default"
useInvertedBackground={true}
bulletPoints={[]}
/>
</div>
<div id="services" data-section="services">
<FeatureCardTwentySeven
title="Core Services"
description="Comprehensive support for every stage of your transition journey."
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
features={[
{ id: "s1", title: "Transition Planning & Guidance", descriptions: ["Holistic roadmap creation."] },
{ id: "s2", title: "Downsizing & Home Organization", descriptions: ["Compassionate decluttering and space management."] },
{ id: "s3", title: "Move Management & Coordination", descriptions: ["Logistics and professional move oversight."] },
{ id: "s4", title: "Senior Living Transition Support", descriptions: ["Guidance through community selection."] }
]}
/>
</div>
<div id="reach-out" data-section="reach-out">
<MetricCardOne
title="When Families Usually Reach Out"
description="Recognizing the signs early ensures a calmer transition."
gridVariant="bento-grid"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
metrics={[
{ id: "m1", value: "Crisis", title: "Emergency", description: "Sudden health changes.", icon: Heart },
{ id: "m2", value: "Fatigue", title: "Decision Fatigue", description: "Overwhelmed by choices.", icon: BrainCircuit },
{ id: "m3", value: "Disagreement", title: "Family Friction", description: "Lack of consensus.", icon: Users },
{ id: "m4", value: "Pre-planning", title: "Proactive", description: "Planning for the future.", icon: BookOpen }
]}
/>
</div>
<div id="why-palante" data-section="why-palante">
<SplitAbout
title="Why Families Choose Palante"
description="We combine decades of experience with a truly heart-centered approach."
textboxLayout="default"
useInvertedBackground={true}
bulletPoints={[]}
/>
</div>
<div id="cta" data-section="cta">
<ContactText
text="Ready to get started?"
buttons={[{ text: "Book a Consultation", href: "mailto:hello@palantests.com" }]}
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" }] }]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}