Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a884eb31c8 | |||
| 83f65e4f1d | |||
| 3ebb8c7993 | |||
| 9c8bbb35b9 | |||
| c93a62bc93 | |||
| de1c65d92a | |||
| de5d94d51a | |||
| dff6ce1869 | |||
| 40e5f6a88c | |||
| ff25a417e2 | |||
| 164eeae650 | |||
| 1d81901007 | |||
| a91ed9981c | |||
| 008e717a20 |
86
src/app/about/page.tsx
Normal file
86
src/app/about/page.tsx
Normal 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>
|
||||||
|
);
|
||||||
|
}
|
||||||
343
src/app/page.tsx
343
src/app/page.tsx
@@ -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 (
|
||||||
@@ -26,248 +26,107 @@ export default function LandingPage() {
|
|||||||
headingFontWeight="normal"
|
headingFontWeight="normal"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<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",
|
]}
|
||||||
},
|
brandName="Palante STS"
|
||||||
{
|
/>
|
||||||
name: "Why Palante",
|
</div>
|
||||||
id: "features",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Testimonials",
|
|
||||||
id: "testimonials",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: "Contact",
|
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
brandName="Palante STS"
|
|
||||||
/>
|
|
||||||
</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."
|
imageSrc="http://img.b2bpic.net/free-photo/grandparents-learning-use-technology_23-2149402581.jpg"
|
||||||
buttons={[
|
/>
|
||||||
{
|
</div>
|
||||||
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="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." }
|
||||||
},
|
]}
|
||||||
{
|
imageSrc="http://img.b2bpic.net/free-photo/senior-couple-holding-hands-together_53876-25301.jpg"
|
||||||
value: "500+",
|
textboxLayout="split"
|
||||||
title: "Families Helped",
|
useInvertedBackground={false}
|
||||||
},
|
/>
|
||||||
{
|
</div>
|
||||||
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="features" data-section="features">
|
<div id="services" data-section="services">
|
||||||
<FeatureCardTwelve
|
<FeatureCardTwentySeven
|
||||||
animationType="slide-up"
|
title="How Palante Helps You"
|
||||||
textboxLayout="split"
|
description="We translate the chaos of senior transitions into a clear, manageable plan."
|
||||||
useInvertedBackground={true}
|
animationType="slide-up"
|
||||||
features={[
|
textboxLayout="split"
|
||||||
{
|
useInvertedBackground={true}
|
||||||
id: "f1",
|
features={[
|
||||||
label: "Compassion",
|
{ id: "s1", title: "Strategic Planning", descriptions: ["Expert roadmapping for care and living needs."], imageSrc: "" },
|
||||||
title: "Deep Listening",
|
{ id: "s2", title: "Logistical Management", descriptions: ["Coordinating movers, decluttering, and floor planning."], imageSrc: "" },
|
||||||
items: [
|
{ id: "s3", title: "Communication Facilitation", descriptions: ["Mediating family discussions to reach consensus."], imageSrc: "" }
|
||||||
"We listen to the resident's concerns first.",
|
]}
|
||||||
"Emotional support for the entire family.",
|
/>
|
||||||
"Addressing the anxiety of change.",
|
</div>
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
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="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"
|
||||||
useInvertedBackground={false}
|
animationType="blur-reveal"
|
||||||
testimonials={[
|
textboxLayout="default"
|
||||||
{
|
useInvertedBackground={false}
|
||||||
id: "t1",
|
metrics={[
|
||||||
name: "Jane D.",
|
{ id: "t1", value: "20+", title: "Years Experience", description: "In senior transitions.", icon: ShieldCheck },
|
||||||
role: "Daughter",
|
{ id: "t2", value: "500+", title: "Families Assisted", description: "Successfully transitioned.", icon: Users },
|
||||||
company: "Family Support",
|
{ id: "t3", value: "100%", title: "Personalized Support", description: "Tailored to your family goals.", icon: Heart },
|
||||||
rating: 5,
|
{ id: "t4", value: "Proven", title: "Framework", description: "A reliable system that works.", icon: BookOpen }
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-senior-gray-haired-smiley-woman_23-2149082567.jpg",
|
]}
|
||||||
},
|
/>
|
||||||
{
|
</div>
|
||||||
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="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.",
|
</div>
|
||||||
},
|
|
||||||
{
|
|
||||||
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">
|
<div id="contact" data-section="contact">
|
||||||
<ContactText
|
<ContactText
|
||||||
useInvertedBackground={false}
|
text="Let’s 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={[
|
/>
|
||||||
{
|
</div>
|
||||||
text: "Book Consultation",
|
|
||||||
href: "mailto:hello@palantests.com",
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoEmphasis
|
<FooterLogoEmphasis
|
||||||
columns={[
|
logoText="Palante STS"
|
||||||
{
|
columns={[
|
||||||
items: [
|
{ items: [{ label: "Home", href: "#hero" }, { label: "Services", href: "#services" }] },
|
||||||
{
|
{ items: [{ label: "Support", href: "#pain-points" }, { label: "Contact", href: "#contact" }] }
|
||||||
label: "Home",
|
]}
|
||||||
href: "#hero",
|
/>
|
||||||
},
|
</div>
|
||||||
{
|
|
||||||
label: "Our Process",
|
|
||||||
href: "#about",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
items: [
|
|
||||||
{
|
|
||||||
label: "Contact",
|
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Privacy Policy",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
logoText="Palante STS"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user