7 Commits

Author SHA1 Message Date
3ebb8c7993 Update src/app/about/page.tsx 2026-04-07 05:06:24 +00:00
c93a62bc93 Update src/app/about/page.tsx 2026-04-07 05:05:56 +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
164eeae650 Merge version_2 into main
Merge version_2 into main
2026-04-07 04:59:08 +00:00
a91ed9981c Merge version_2 into main
Merge version_2 into main
2026-04-07 04:58:29 +00:00
2 changed files with 88 additions and 1 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

@@ -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"