86 lines
3.6 KiB
TypeScript
86 lines
3.6 KiB
TypeScript
"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>
|
|
);
|
|
} |