7 Commits

Author SHA1 Message Date
8438f7235f Update src/app/how-it-works/page.tsx 2026-06-03 08:08:53 +00:00
ce6e62ec77 Update src/app/contact/page.tsx 2026-06-03 08:08:53 +00:00
19cc30f674 Update src/app/blog/page.tsx 2026-06-03 08:08:52 +00:00
c295111328 Update src/app/about/page.tsx 2026-06-03 08:08:52 +00:00
880fb851d2 Merge version_23 into main
Merge version_23 into main
2026-06-01 22:43:48 +00:00
624dd99621 Update src/app/page.tsx 2026-06-01 22:43:45 +00:00
0db66cf3cb Merge version_22 into main
Merge version_22 into main
2026-05-02 00:53:45 +00:00
5 changed files with 23 additions and 5 deletions

View File

@@ -125,7 +125,7 @@ export default function AboutPage() {
<FooterSimple
columns={[
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] },
{ title: "Contact", items: [{ label: "Email: hello@gopalante.com", href: "mailto:hello@gopalante.com" }] }
{ title: "Contact", items: [{ label: "Email: gopalanteinc@gmail.com", href: "mailto:gopalanteinc@gmail.com" }] }
]}
bottomLeftText="© 2026 Palante Senior Transition Specialists LLC"
bottomRightText="All rights reserved."

View File

@@ -94,7 +94,7 @@ export default function LandingPage() {
{
label: "Schedule Consultation", href: "/contact"},
{
label: "Email: hello@gopalante.com", href: "mailto:hello@gopalante.com"},
label: "Email: gopalanteinc@gmail.com", href: "mailto:gopalanteinc@gmail.com"},
{
label: "Text/Call: (213) 706-0093", href: "tel:2137060093"},
],

View File

@@ -29,8 +29,11 @@ export default function ContactPage() {
brandName="Palante STS"
navItems={[
{ name: "Home", id: "/" },
{ name: "How It Works", id: "/how-it-works" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
{ name: "Resources", id: "/blog" },
{ name: "Contact", id: "/contact" }
]}
/>
</div>

View File

@@ -68,7 +68,7 @@ export default function LandingPage() {
{
title: "Contact", items: [
{ label: "Schedule Consultation", href: "/contact" },
{ label: "Email: hello@gopalante.com", href: "mailto:hello@gopalante.com" },
{ label: "Email: gopalanteinc@gmail.com", href: "mailto:gopalanteinc@gmail.com" },
{ label: "Text/Call: (213) 706-0093", href: "tel:2137060093" },
],
},

View File

@@ -10,6 +10,7 @@ import ProductCardOne from '@/components/sections/product/ProductCardOne';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import { Briefcase, Home, Map, Users } from "lucide-react";
import TextBox from '@/components/Textbox';
export default function LandingPage() {
return (
@@ -91,6 +92,20 @@ export default function LandingPage() {
/>
</div>
<div id="why-one-person" data-section="why-one-person">
<TextBox
title="Why One Person Changes Everything"
description="When Ronnie's mother needed to move into assisted living, he thought 20 years as a California Realtor would make it easier. He knew real estate. He did not know the rest of it — the endless calls to communities, the weight of 40 years of memories, the emotional toll on every member of the family. Palante exists because no family should have to coordinate all of this alone."
textboxLayout="default"
center={true}
buttons={[{ text: "Meet Ronnie →", href: "/about" }]}
className="bg-[#0F172A] py-16 text-center"
titleClassName="text-white"
descriptionClassName="text-gray-300"
buttonClassName="bg-[var(--accent)] text-[var(--secondary-cta-text)] hover:bg-[var(--accent)] hover:text-[var(--secondary-cta-text)]"
/>
</div>
<div id="testimonials-home" data-section="testimonials-home">
<TestimonialCardThirteen
animationType="slide-up"
@@ -133,4 +148,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}