Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3ebb8c7993 | |||
| c93a62bc93 | |||
| de5d94d51a | |||
| dff6ce1869 | |||
| 40e5f6a88c | |||
| 164eeae650 | |||
| a91ed9981c |
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>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -33,6 +33,7 @@ export default function LandingPage() {
|
|||||||
{ name: "Our Process", id: "how-it-works" },
|
{ name: "Our Process", id: "how-it-works" },
|
||||||
{ name: "Services", id: "services" },
|
{ name: "Services", id: "services" },
|
||||||
{ name: "Support", id: "pain-points" },
|
{ name: "Support", id: "pain-points" },
|
||||||
|
{ name: "About", id: "about" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "contact" },
|
||||||
]}
|
]}
|
||||||
brandName="Palante STS"
|
brandName="Palante STS"
|
||||||
|
|||||||
Reference in New Issue
Block a user