4 Commits

Author SHA1 Message Date
bf93513564 Update src/app/about/page.tsx 2026-04-07 18:55:17 +00:00
a306bc66b2 Update src/app/about/page.tsx 2026-04-07 18:54:47 +00:00
cb8176524d Update src/app/about/page.tsx 2026-04-07 18:54:23 +00:00
b2066489b8 Merge version_2 into main
Merge version_2 into main
2026-04-07 18:48:59 +00:00

View File

@@ -2,148 +2,69 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import FooterBase from '@/components/sections/footer/FooterBase';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; import MediaAbout from '@/components/sections/about/MediaAbout';
import { Info } from "lucide-react";
export default function LandingPage() { export default function AboutPage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="shift-hover" defaultButtonVariant="text-stagger"
defaultTextAnimation="background-highlight" defaultTextAnimation="entrance-slide"
borderRadius="pill" borderRadius="rounded"
contentWidth="small" contentWidth="medium"
sizing="mediumLargeSizeLargeTitles" sizing="medium"
background="noise" background="circleGradient"
cardStyle="gradient-bordered" cardStyle="glass-elevated"
primaryButtonStyle="gradient" primaryButtonStyle="gradient"
secondaryButtonStyle="layered" secondaryButtonStyle="glass"
headingFontWeight="normal" headingFontWeight="normal"
> >
<ReactLenis root> <ReactLenis root>
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleFullscreen <NavbarLayoutFloatingInline
navItems={[ navItems={[
{ { name: "Home", id: "/" },
name: "Home", { name: "About", id: "/about" },
id: "/", { name: "Contact", id: "/contact" }
}, ]}
{ brandName="Palante STS"
name: "How It Works", button={{ text: "Contact Us", href: "/contact" }}
id: "/how-it-works", />
}, </div>
{
name: "Services",
id: "/services",
},
{
name: "About",
id: "/about",
},
{
name: "Resources",
id: "/blog",
},
{
name: "Contact",
id: "/contact",
},
]}
brandName="Palante STS"
/>
</div>
<div id="about-body" data-section="about-body"> <div id="about-hero" data-section="about-hero">
<TestimonialAboutCard <MediaAbout
useInvertedBackground={false} useInvertedBackground={false}
tag="About Palante STS" tag="Professional Profile"
title="What Palante Means to Us" title="Ronnie Konishi"
description="Derived from the Puerto Rican phrase 'pa'lante' — meaning forward. It guides our mission to support families." description="Senior Transition Specialist & Dedicated Advocate for Southern California Families."
subdescription="Whether you are navigating this as an adult child or senior, we are here to support your dignity and future steps." imageSrc="http://img.b2bpic.net/free-photo/close-up-smiling-worker-talking-phone_23-2147562047.jpg?_wi=2"
icon={Info} buttons={[{ text: "Book a Consultation", href: "/contact" }]}
imageSrc="http://img.b2bpic.net/free-photo/close-up-smiling-worker-talking-phone_23-2147562047.jpg?_wi=2" />
mediaAnimation="slide-up" </div>
/>
</div>
<div id="about" data-section="about"> <div id="about-quote" data-section="about-quote">
<TestimonialAboutCard <MediaAbout
useInvertedBackground={false} useInvertedBackground={true}
tag="Mission" tag="Core Philosophy"
title="Our Approach" title="A Legacy of Compassion"
description="Compassion meets professionalism." description="Transitioning a senior parent is never just about real estate; it is about honoring a lifetime of stories and ensuring a dignified, secure future."
subdescription="We are here for you." imageSrc="http://img.b2bpic.net/free-photo/medium-shot-family-celebrating-birthday_23-2150599031.jpg?_wi=1"
icon={Info} />
imageSrc="http://img.b2bpic.net/free-photo/close-up-smiling-worker-talking-phone_23-2147562047.jpg?_wi=3" </div>
mediaAnimation="slide-up"
/>
</div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterBaseCard <FooterBase
logoText="Palante STS" logoText="Palante STS"
columns={[ columns={[
{ { title: "Company", items: [{ label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] },
title: "Company", { title: "Contact", items: [{ label: "Email: hello@gopalante.com", href: "mailto:hello@gopalante.com" }] }
items: [ ]}
{ copyrightText="© 2026 Palante Senior Transition Specialists LLC"
label: "About", />
href: "/about", </div>
},
{
label: "Services",
href: "/services",
},
{
label: "How It Works",
href: "/how-it-works",
},
],
},
{
title: "Contact",
items: [
{
label: "Schedule Consultation",
href: "/contact",
},
{
label: "Email: hello@gopalante.com",
href: "mailto:hello@gopalante.com",
},
{
label: "Text/Call: (555) 555-5555",
href: "tel:5555555555",
},
],
},
{
title: "Service Areas",
items: [
{
label: "Orange County",
href: "#",
},
{
label: "Los Angeles",
href: "#",
},
{
label: "Riverside",
href: "#",
},
{
label: "San Bernardino",
href: "#",
},
],
},
]}
copyrightText="© 2026 Palante Senior Transition Specialists LLC"
/>
</div>
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }