Compare commits
71 Commits
version_2
...
version_20
| Author | SHA1 | Date | |
|---|---|---|---|
| 07a8145dc5 | |||
| b7e4330c6f | |||
| 36df7f9b39 | |||
| 4084c862c0 | |||
| 7d46efd395 | |||
| 23fe7c196a | |||
| 5a0df5be21 | |||
| 33882aa1c6 | |||
| 57faa6150f | |||
| 22f7873abc | |||
| 9c14b871d7 | |||
| 0f147872df | |||
| 8c4890d6c9 | |||
| 51be7110c1 | |||
| b9143c1ece | |||
| 7f9b28db91 | |||
| 864c5c7228 | |||
| eb0cd62742 | |||
| 5695382fee | |||
| 8568948f2b | |||
| 7a104b4b5e | |||
| 1050cd539c | |||
| c34a1969c2 | |||
| a7b51a3fec | |||
| 3e2654684a | |||
| 21d5d1d126 | |||
| a61fd60846 | |||
| 177560e9c2 | |||
| 3467d2ee9e | |||
| 86bd1d025b | |||
| 36ecd73e24 | |||
| 87706b317c | |||
| 9dfaf579d6 | |||
| bc66c73903 | |||
| 0d160173e9 | |||
| 2a450e541c | |||
| 63ceb102be | |||
| 122c5b0ac7 | |||
| 5904f675f4 | |||
| 78d5e484cf | |||
| 4a99ad47d9 | |||
| b015687f00 | |||
| 16641a60e8 | |||
| 72dc1edde7 | |||
| f864feaef7 | |||
| 38b0d3b34b | |||
| 34dca46f70 | |||
| e1275f3237 | |||
| 30dfa88bf5 | |||
| 3c6fa85247 | |||
| 7fd1a00935 | |||
| 045bc9703c | |||
| 8daee8a60c | |||
| abc6201f2a | |||
| 1c47bc2eec | |||
| 1a8b2b3b82 | |||
| 49cbdab82b | |||
| b108ed1c45 | |||
| f58b90bf38 | |||
| 955554dfa6 | |||
| 0153db5481 | |||
| 4829c18aac | |||
| e2a8e65350 | |||
| f2255fedf2 | |||
| de1c01ad0c | |||
| bf93513564 | |||
| f7c340416a | |||
| a306bc66b2 | |||
| 044fc2d3c8 | |||
| cb8176524d | |||
| b2066489b8 |
@@ -2,148 +2,136 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||
import { Info } from "lucide-react";
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||
import FeatureBento from '@/components/sections/feature/FeatureBento';
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function AboutPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="shift-hover"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="pill"
|
||||
contentWidth="small"
|
||||
sizing="mediumLargeSizeLargeTitles"
|
||||
background="noise"
|
||||
cardStyle="gradient-bordered"
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="layered"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "How It Works",
|
||||
id: "/how-it-works",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Resources",
|
||||
id: "/blog",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="Palante STS"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleCentered
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "How It Works", id: "/how-it-works" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Resources", id: "/blog" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
brandName="Palante STS"
|
||||
button={{ text: "Contact Us", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-body" data-section="about-body">
|
||||
<TestimonialAboutCard
|
||||
useInvertedBackground={false}
|
||||
tag="About Palante STS"
|
||||
title="What Palante Means to Us"
|
||||
description="Derived from the Puerto Rican phrase 'pa'lante' — meaning forward. It guides our mission to support families."
|
||||
subdescription="Whether you are navigating this as an adult child or senior, we are here to support your dignity and future steps."
|
||||
icon={Info}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-smiling-worker-talking-phone_23-2147562047.jpg?_wi=2"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<div id="about-header" data-section="about-header" style={{ backgroundColor: "#F5F5F0" }}>
|
||||
<div className="flex flex-col items-center py-12 px-6 text-center">
|
||||
<img
|
||||
src="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BgAzSnGoyjp2WRFEpWFU41xUOw/uploaded-1777682323670-1cn0wv19.jpg"
|
||||
alt="Ronnie Konishi"
|
||||
className="w-[120px] h-[120px] rounded-full object-cover mb-4"
|
||||
/>
|
||||
<p className="text-sm text-gray-500 mb-6 max-w-sm">Ronnie Konishi, serving Orange County, LA, Riverside & San Bernardino.</p>
|
||||
|
||||
<div className="flex gap-4 mb-6">
|
||||
{["CA Licensed Realtor · DRE #01832704", "SRES® Designated", "20 Years Experience"].map((text, i) => (
|
||||
<div key={i} className="bg-[#1A3A5C] text-[#ffffff] px-4 py-2 rounded-lg text-xs font-semibold whitespace-nowrap">
|
||||
{text}
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TestimonialAboutCard
|
||||
useInvertedBackground={false}
|
||||
tag="Mission"
|
||||
title="Our Approach"
|
||||
description="Compassion meets professionalism."
|
||||
subdescription="We are here for you."
|
||||
icon={Info}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/close-up-smiling-worker-talking-phone_23-2147562047.jpg?_wi=3"
|
||||
mediaAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
<TextSplitAbout
|
||||
title="Ronnie Konishi"
|
||||
description={[
|
||||
"Founder & Principal Senior Transition Specialist · California Licensed Realtor · 20 Years Experience",
|
||||
"'I remember wishing there was just one person who could guide us through everything — with both expertise and compassion.'"
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Palante STS"
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
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>
|
||||
<div id="about-story" data-section="about-story" style={{ backgroundColor: "#F5F5F0" }}>
|
||||
<TextSplitAbout
|
||||
title="The Story"
|
||||
description={[
|
||||
"When my mother needed to move from our family home into assisted living, I thought my 20 years as a licensed California Realtor would make it easier. I knew real estate. I knew contracts and timelines and negotiations.", "I was not prepared for the rest of it.", "The endless phone calls to senior communities — none of whom seemed to have availability when we needed it. The contradictory advice from well-meaning friends. The sheer weight of deciding what happened to 40 years of furniture, photographs, and memories. And underneath all of it, the emotional toll on every member of our family — the guilt, the grief, the exhaustion of making enormous decisions while also trying to just be a present, loving son.", "I remember standing in my mother's living room one afternoon, surrounded by decades of her life, thinking: there has to be a better way to do this."
|
||||
]}
|
||||
useInvertedBackground={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about-mission" data-section="about-mission" style={{ backgroundColor: "#F5F5F0" }}>
|
||||
<TextSplitAbout
|
||||
title="Why I Founded Palante STS"
|
||||
description={[
|
||||
"After my family's experience, I couldn't stop thinking about the thousands of Southern California families going through the same thing every single day — without a roadmap, without a guide, without anyone who could hold the whole picture at once.", "I founded Palante Senior Transition Specialists to be the service I wished my family had. One person. One point of contact. Someone who could sell the home with genuine expertise, identify and personally vet the right senior communities, and manage the downsizing and move — all while actually understanding what the family was going through emotionally.", "The name says it all. Pa'lante — from the Puerto Rican expression para adelante — means forward. It's what we say when we're facing something hard and we choose to keep moving. That's what every family I work with is doing. And that's the energy I bring to every engagement."
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
buttons={[{ text: "Schedule a Call with Ronnie", href: "/contact" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="bring-to-family" data-section="bring-to-family" style={{ backgroundColor: "#F5F5F0" }}>
|
||||
<MetricSplitMediaAbout
|
||||
title="What I Bring to Your Family"
|
||||
description="My role is to be your anchor. I combine professional real estate strategy with deep senior care knowledge to ensure you never have to navigate this journey alone."
|
||||
metrics={[
|
||||
{ value: "20 Years", title: "Real Estate Expertise" },
|
||||
{ value: "Compassion", title: "Personalized Guidance" },
|
||||
{ value: "Complete", title: "End-to-End Transition" }
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="who-i-serve" data-section="who-i-serve" style={{ backgroundColor: "#F5F5F0" }}>
|
||||
<FeatureBento
|
||||
title="Who I Serve"
|
||||
description="I partner with families in Southern California seeking professional guidance during senior transitions."
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
title: "Families in Transition", description: "Supporting adult children caring for aging parents.", bentoComponent: "media-stack", items: [
|
||||
{ imageSrc: "https://images.unsplash.com/photo-1554629947-320078873099" },
|
||||
{ imageSrc: "https://images.unsplash.com/photo-1544005313-94ddf0286df2" },
|
||||
{ imageSrc: "https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<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" }] }
|
||||
]}
|
||||
bottomLeftText="© 2026 Palante Senior Transition Specialists LLC"
|
||||
bottomRightText="All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -25,29 +25,17 @@ export default function LandingPage() {
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "How It Works",
|
||||
id: "/how-it-works",
|
||||
},
|
||||
name: "How It Works", id: "/how-it-works"},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
name: "Services", id: "/services"},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
name: "About", id: "/about"},
|
||||
{
|
||||
name: "Resources",
|
||||
id: "/blog",
|
||||
},
|
||||
name: "Resources", id: "/blog"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
brandName="Palante STS"
|
||||
/>
|
||||
@@ -62,35 +50,11 @@ export default function LandingPage() {
|
||||
description="Guides for Orange County and Southern California families."
|
||||
blogs={[
|
||||
{
|
||||
id: "b1",
|
||||
category: "Real Estate",
|
||||
title: "Selling a Senior-Owned Home",
|
||||
excerpt: "Tips for maximizing market value and reducing stress.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-family-celebrating-birthday_23-2150599031.jpg?_wi=7",
|
||||
authorName: "Palante Expert",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/close-up-smiling-worker-talking-phone_23-2147562047.jpg",
|
||||
date: "Jan 2026",
|
||||
},
|
||||
id: "b1", category: "Real Estate", title: "Selling a Senior-Owned Home", excerpt: "Tips for maximizing market value and reducing stress.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-family-celebrating-birthday_23-2150599031.jpg?_wi=7", authorName: "Palante Expert", authorAvatar: "http://img.b2bpic.net/free-photo/close-up-smiling-worker-talking-phone_23-2147562047.jpg", date: "Jan 2026"},
|
||||
{
|
||||
id: "b2",
|
||||
category: "Senior Housing",
|
||||
title: "Choosing Assisted Living",
|
||||
excerpt: "How to evaluate a community for your loved one.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/full-shot-smiley-couple-with-drinks_23-2149391034.jpg?_wi=7",
|
||||
authorName: "Palante Expert",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/close-up-smiling-worker-talking-phone_23-2147562047.jpg",
|
||||
date: "Jan 2026",
|
||||
},
|
||||
id: "b2", category: "Senior Housing", title: "Choosing Assisted Living", excerpt: "How to evaluate a community for your loved one.", imageSrc: "http://img.b2bpic.net/free-photo/full-shot-smiley-couple-with-drinks_23-2149391034.jpg?_wi=7", authorName: "Palante Expert", authorAvatar: "http://img.b2bpic.net/free-photo/close-up-smiling-worker-talking-phone_23-2147562047.jpg", date: "Jan 2026"},
|
||||
{
|
||||
id: "b3",
|
||||
category: "Family Guidance",
|
||||
title: "Starting the Conversation",
|
||||
excerpt: "Tips for talking to mom or dad about transitioning.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-family-posing-together_23-2149071589.jpg?_wi=9",
|
||||
authorName: "Palante Expert",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/close-up-smiling-worker-talking-phone_23-2147562047.jpg",
|
||||
date: "Jan 2026",
|
||||
},
|
||||
id: "b3", category: "Family Guidance", title: "Starting the Conversation", excerpt: "Tips for talking to mom or dad about transitioning.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-family-posing-together_23-2149071589.jpg?_wi=9", authorName: "Palante Expert", authorAvatar: "http://img.b2bpic.net/free-photo/close-up-smiling-worker-talking-phone_23-2147562047.jpg", date: "Jan 2026"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -104,25 +68,9 @@ export default function LandingPage() {
|
||||
description="Helpful articles."
|
||||
blogs={[
|
||||
{
|
||||
id: "b1",
|
||||
category: "General",
|
||||
title: "Transitioning Guide",
|
||||
excerpt: "Start here.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-family-posing-together_23-2149071589.jpg?_wi=10",
|
||||
authorName: "Palante",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/close-up-smiling-worker-talking-phone_23-2147562047.jpg",
|
||||
date: "2026",
|
||||
},
|
||||
id: "b1", category: "General", title: "Transitioning Guide", excerpt: "Start here.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-family-posing-together_23-2149071589.jpg?_wi=10", authorName: "Palante", authorAvatar: "http://img.b2bpic.net/free-photo/close-up-smiling-worker-talking-phone_23-2147562047.jpg", date: "2026"},
|
||||
{
|
||||
id: "b2",
|
||||
category: "Real Estate",
|
||||
title: "Property Tips",
|
||||
excerpt: "Sales info.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-family-celebrating-birthday_23-2150599031.jpg?_wi=8",
|
||||
authorName: "Palante",
|
||||
authorAvatar: "http://img.b2bpic.net/free-photo/close-up-smiling-worker-talking-phone_23-2147562047.jpg",
|
||||
date: "2026",
|
||||
},
|
||||
id: "b2", category: "Real Estate", title: "Property Tips", excerpt: "Sales info.", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-family-celebrating-birthday_23-2150599031.jpg?_wi=8", authorName: "Palante", authorAvatar: "http://img.b2bpic.net/free-photo/close-up-smiling-worker-talking-phone_23-2147562047.jpg", date: "2026"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -132,58 +80,35 @@ export default function LandingPage() {
|
||||
logoText="Palante STS"
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
label: "About", href: "/about"},
|
||||
{
|
||||
label: "Services",
|
||||
href: "/services",
|
||||
},
|
||||
label: "Services", href: "/services"},
|
||||
{
|
||||
label: "How It Works",
|
||||
href: "/how-it-works",
|
||||
},
|
||||
label: "How It Works", href: "/how-it-works"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{
|
||||
label: "Schedule Consultation",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Schedule Consultation", href: "/contact"},
|
||||
{
|
||||
label: "Email: hello@gopalante.com",
|
||||
href: "mailto:hello@gopalante.com",
|
||||
},
|
||||
label: "Email: hello@gopalante.com", href: "mailto:hello@gopalante.com"},
|
||||
{
|
||||
label: "Text/Call: (555) 555-5555",
|
||||
href: "tel:5555555555",
|
||||
},
|
||||
label: "Text/Call: (213) 706-0093", href: "tel:2137060093"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Service Areas",
|
||||
items: [
|
||||
title: "Service Areas", items: [
|
||||
{
|
||||
label: "Orange County",
|
||||
href: "#",
|
||||
},
|
||||
label: "Orange County", href: "#"},
|
||||
{
|
||||
label: "Los Angeles",
|
||||
href: "#",
|
||||
},
|
||||
label: "Los Angeles", href: "#"},
|
||||
{
|
||||
label: "Riverside",
|
||||
href: "#",
|
||||
},
|
||||
label: "Riverside", href: "#"},
|
||||
{
|
||||
label: "San Bernardino",
|
||||
href: "#",
|
||||
},
|
||||
label: "San Bernardino", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
@@ -193,4 +118,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -2,11 +2,14 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FooterCard from '@/components/sections/footer/FooterCard';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import Link from "next/link";
|
||||
|
||||
export default function LandingPage() {
|
||||
export default function ContactPage() {
|
||||
const inputClassName = "bg-[#FFFFFF] border border-[#D0CCBC] text-[#1A3A5C] placeholder:text-gray-500";
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="shift-hover"
|
||||
@@ -21,170 +24,37 @@ export default function LandingPage() {
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
{
|
||||
name: "How It Works",
|
||||
id: "/how-it-works",
|
||||
},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
{
|
||||
name: "Resources",
|
||||
id: "/blog",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
]}
|
||||
brandName="Palante STS"
|
||||
/>
|
||||
</div>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
brandName="Palante STS"
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact-body" data-section="contact-body">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
title="Let's Talk, No Pressure"
|
||||
description="Most families say they wish they'd called sooner. We're here to listen."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Your Name",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Your Email",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "phone",
|
||||
type: "tel",
|
||||
placeholder: "Phone Number",
|
||||
required: true,
|
||||
},
|
||||
]}
|
||||
multiSelect={{
|
||||
name: "county",
|
||||
label: "Which County are you in?",
|
||||
options: [
|
||||
"Orange County",
|
||||
"Los Angeles",
|
||||
"Riverside",
|
||||
"San Bernardino",
|
||||
"Other",
|
||||
],
|
||||
}}
|
||||
textarea={{
|
||||
name: "message",
|
||||
placeholder: "Tell us a little about your situation",
|
||||
rows: 4,
|
||||
}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/serious-businessman-working-office-analyzing-business-plans-there-are-people-background_637285-187.jpg?_wi=2"
|
||||
/>
|
||||
</div>
|
||||
<div id="contact-split" data-section="contact-split">
|
||||
<ContactSplit
|
||||
tag="Get In Touch"
|
||||
title="Let's Talk, No Pressure"
|
||||
description="Most families say they wish they'd called sooner. We're here to listen."
|
||||
background={{ variant: "plain" }}
|
||||
mediaAnimation="blur-reveal"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BgAzSnGoyjp2WRFEpWFU41xUOw/uploaded-1777680642863-khh8wvic.jpg?_wi=1"
|
||||
inputClassName={inputClassName}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
title="Contact Us"
|
||||
description="We're here to listen."
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Name",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "email",
|
||||
type: "email",
|
||||
placeholder: "Email",
|
||||
required: true,
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/serious-businessman-working-office-analyzing-business-plans-there-are-people-background_637285-187.jpg?_wi=3"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Palante STS"
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
{
|
||||
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>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Palante STS"
|
||||
copyrightText="© 2026 Palante Senior Transition Specialists LLC"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -25,29 +25,17 @@ export default function LandingPage() {
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "How It Works",
|
||||
id: "/how-it-works",
|
||||
},
|
||||
name: "How It Works", id: "/how-it-works"},
|
||||
{
|
||||
name: "Services",
|
||||
id: "/services",
|
||||
},
|
||||
name: "Services", id: "/services"},
|
||||
{
|
||||
name: "About",
|
||||
id: "/about",
|
||||
},
|
||||
name: "About", id: "/about"},
|
||||
{
|
||||
name: "Resources",
|
||||
id: "/blog",
|
||||
},
|
||||
name: "Resources", id: "/blog"},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "/contact",
|
||||
},
|
||||
name: "Contact", id: "/contact"},
|
||||
]}
|
||||
brandName="Palante STS"
|
||||
/>
|
||||
@@ -59,35 +47,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "Is there a cost for your placement services?",
|
||||
content: "No, placement services are free to families. Senior communities pay us.",
|
||||
},
|
||||
id: "f1", title: "Is there a cost for your placement services?", content: "No, placement services are free to families. Senior communities pay us."},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Do we have to use your real estate services?",
|
||||
content: "Never, but most families find it far easier to use one trusted expert for everything.",
|
||||
},
|
||||
id: "f2", title: "Do we have to use your real estate services?", content: "Never, but most families find it far easier to use one trusted expert for everything."},
|
||||
{
|
||||
id: "f3",
|
||||
title: "How long does a typical transition take?",
|
||||
content: "It varies, but we typically plan for 30-120 days.",
|
||||
},
|
||||
id: "f3", title: "How long does a typical transition take?", content: "It varies, but we typically plan for 30-120 days."},
|
||||
{
|
||||
id: "f4",
|
||||
title: "What if my parent doesn't want to move?",
|
||||
content: "We've helped many navigate this — it starts with listening, not pushing.",
|
||||
},
|
||||
id: "f4", title: "What if my parent doesn't want to move?", content: "We've helped many navigate this — it starts with listening, not pushing."},
|
||||
{
|
||||
id: "f5",
|
||||
title: "Do you only serve Orange County?",
|
||||
content: "No, we serve Orange, LA, Riverside, and San Bernardino counties.",
|
||||
},
|
||||
id: "f5", title: "Do you only serve Orange County?", content: "No, we serve Orange, LA, Riverside, and San Bernardino counties."},
|
||||
{
|
||||
id: "f6",
|
||||
title: "What communities do you work with?",
|
||||
content: "We work with board and care, assisted living, memory care, and 55+ communities.",
|
||||
},
|
||||
id: "f6", title: "What communities do you work with?", content: "We work with board and care, assisted living, memory care, and 55+ communities."},
|
||||
]}
|
||||
title="Frequently Asked Questions"
|
||||
description="Answers to common concerns for families beginning the transition process."
|
||||
@@ -103,30 +73,15 @@ export default function LandingPage() {
|
||||
description="Common questions for families starting their transition."
|
||||
faqs={[
|
||||
{
|
||||
id: "f1",
|
||||
title: "Is there a cost?",
|
||||
content: "Placement is free.",
|
||||
},
|
||||
id: "f1", title: "Is there a cost?", content: "Placement is free."},
|
||||
{
|
||||
id: "f2",
|
||||
title: "Do I need your real estate?",
|
||||
content: "No, it's optional.",
|
||||
},
|
||||
id: "f2", title: "Do I need your real estate?", content: "No, it's optional."},
|
||||
{
|
||||
id: "f3",
|
||||
title: "How long?",
|
||||
content: "30-120 days.",
|
||||
},
|
||||
id: "f3", title: "How long?", content: "30-120 days."},
|
||||
{
|
||||
id: "f4",
|
||||
title: "Reluctant parent?",
|
||||
content: "We listen carefully.",
|
||||
},
|
||||
id: "f4", title: "Reluctant parent?", content: "We listen carefully."},
|
||||
{
|
||||
id: "f5",
|
||||
title: "Service areas?",
|
||||
content: "OC, LA, Riverside, SB.",
|
||||
},
|
||||
id: "f5", title: "Service areas?", content: "OC, LA, Riverside, SB."},
|
||||
]}
|
||||
faqsAnimation="slide-up"
|
||||
/>
|
||||
@@ -137,58 +92,35 @@ export default function LandingPage() {
|
||||
logoText="Palante STS"
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About",
|
||||
href: "/about",
|
||||
},
|
||||
label: "About", href: "/about"},
|
||||
{
|
||||
label: "Services",
|
||||
href: "/services",
|
||||
},
|
||||
label: "Services", href: "/services"},
|
||||
{
|
||||
label: "How It Works",
|
||||
href: "/how-it-works",
|
||||
},
|
||||
label: "How It Works", href: "/how-it-works"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{
|
||||
label: "Schedule Consultation",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Schedule Consultation", href: "/contact"},
|
||||
{
|
||||
label: "Email: hello@gopalante.com",
|
||||
href: "mailto:hello@gopalante.com",
|
||||
},
|
||||
label: "Email: hello@gopalante.com", href: "mailto:hello@gopalante.com"},
|
||||
{
|
||||
label: "Text/Call: (555) 555-5555",
|
||||
href: "tel:5555555555",
|
||||
},
|
||||
label: "Text/Call: (213) 706-0093", href: "tel:2137060093"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Service Areas",
|
||||
items: [
|
||||
title: "Service Areas", items: [
|
||||
{
|
||||
label: "Orange County",
|
||||
href: "#",
|
||||
},
|
||||
label: "Orange County", href: "#"},
|
||||
{
|
||||
label: "Los Angeles",
|
||||
href: "#",
|
||||
},
|
||||
label: "Los Angeles", href: "#"},
|
||||
{
|
||||
label: "Riverside",
|
||||
href: "#",
|
||||
},
|
||||
label: "Riverside", href: "#"},
|
||||
{
|
||||
label: "San Bernardino",
|
||||
href: "#",
|
||||
},
|
||||
label: "San Bernardino", href: "#"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
@@ -198,4 +130,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -10,8 +10,8 @@ import { Archivo } from "next/font/google";
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: 'Senior Transition Specialist Southern California | Palante STS',
|
||||
description: 'Palante STS provides expert senior housing placement, home sales, and downsizing transition management in OC, LA, Riverside, and San Bernardino.',
|
||||
title: 'About Palante Senior Transition Specialists',
|
||||
description: 'Learn about the mission, expertise, and story behind Palante Senior Transition Specialists, providing compassionate guidance for California families.',
|
||||
openGraph: {
|
||||
"title": "Palante STS - Trusted Senior Transition Specialists",
|
||||
"description": "Real estate, placement, and transition management. We handle everything.",
|
||||
|
||||
@@ -65,10 +65,10 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ title: "Free Consultation", description: "We listen first — no pressure, no scripts.", icon: Users, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/uniform-healthcare-medical-icons-computer_1134-959.jpg?_wi=1" }, { imageSrc: "http://img.b2bpic.net/free-photo/uniform-healthcare-medical-icons-computer_1134-959.jpg?_wi=2" }] },
|
||||
{ title: "Personalized Plan", description: "Every situation is different. Yours gets a custom roadmap.", icon: Map, mediaItems: [{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=6pdsjv&_wi=1" }, { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=6pdsjv&_wi=2" }] },
|
||||
{ title: "Execution", description: "We coordinate home sales, tours, and downsizing for you.", icon: Briefcase, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-vector/25-task-project-management-flat-color-icon-pack_1142-22695.jpg?_wi=1" }, { imageSrc: "http://img.b2bpic.net/free-vector/25-task-project-management-flat-color-icon-pack_1142-22695.jpg?_wi=2" }] },
|
||||
{ title: "Move-In Day", description: "From your parent's old living room to their new home, set up and ready.", icon: Home, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/paper-cut-key-heart-as-symbol-love_1232-3647.jpg?_wi=1" }, { imageSrc: "http://img.b2bpic.net/free-photo/paper-cut-key-heart-as-symbol-love_1232-3647.jpg?_wi=2" }] }
|
||||
{ title: "Free Consultation", description: "We listen first — no pressure, no scripts.", icon: Users, mediaItems: [{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BgAzSnGoyjp2WRFEpWFU41xUOw/uploaded-1776662612141-6oey12mw.jpg?_wi=1" }, { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BgAzSnGoyjp2WRFEpWFU41xUOw/uploaded-1776662612141-6oey12mw.jpg?_wi=2" }] },
|
||||
{ title: "Personalized Plan", description: "Every situation is different. Yours gets a custom roadmap.", icon: Map, mediaItems: [{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BgAzSnGoyjp2WRFEpWFU41xUOw/uploaded-1776662872184-zqbg85kc.jpg?_wi=1" }, { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BgAzSnGoyjp2WRFEpWFU41xUOw/uploaded-1776662872184-zqbg85kc.jpg?_wi=2" }] },
|
||||
{ title: "Execution", description: "We coordinate home sales, tours, and downsizing for you.", icon: Briefcase, mediaItems: [{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BgAzSnGoyjp2WRFEpWFU41xUOw/uploaded-1776663052480-67qzt7g8.jpg?_wi=1" }, { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BgAzSnGoyjp2WRFEpWFU41xUOw/uploaded-1776663052480-67qzt7g8.jpg?_wi=2" }] },
|
||||
{ title: "Move-In Day", description: "From your parent's old living room to their new home, set up and ready.", icon: Home, mediaItems: [{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BgAzSnGoyjp2WRFEpWFU41xUOw/uploaded-1776663133033-7zneotse.jpg?_wi=1" }, { imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BgAzSnGoyjp2WRFEpWFU41xUOw/uploaded-1776663133033-7zneotse.jpg?_wi=2" }] }
|
||||
]}
|
||||
title="A Trusted, Four-Step Process"
|
||||
description="We simplify your parent's transition with clear steps and compassionate support."
|
||||
@@ -125,7 +125,7 @@ export default function LandingPage() {
|
||||
logoText="Palante STS"
|
||||
columns={[
|
||||
{ title: "Company", items: [{ label: "About", href: "/about" }, { 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: "Contact", items: [{ label: "Schedule Consultation", href: "/contact" }, { label: "Email: hello@gopalante.com", href: "mailto:hello@gopalante.com" }, { label: "Text/Call: (213) 706-0093", href: "tel:2137060093" }] },
|
||||
{ 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"
|
||||
|
||||
@@ -41,9 +41,9 @@ export default function ServicesPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{ title: "Real Estate Services", description: "California-licensed expertise to maximize sale proceeds for care.", icon: Home, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-family-celebrating-birthday_23-2150599031.jpg?_wi=3" }, { imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-family-celebrating-birthday_23-2150599031.jpg?_wi=4" }] },
|
||||
{ title: "Senior Placement", description: "Personally toured and vetted facilities at no cost to you.", icon: Building, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/full-shot-smiley-couple-with-drinks_23-2149391034.jpg?_wi=3" }, { imageSrc: "http://img.b2bpic.net/free-photo/full-shot-smiley-couple-with-drinks_23-2149391034.jpg?_wi=4" }] },
|
||||
{ title: "Downsizing Management", description: "Packing, estate coordination, and moving day support.", icon: Package, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/small-business-owner-packing-product-parcel-boxes-delivery_53876-127277.jpg?_wi=3" }, { imageSrc: "http://img.b2bpic.net/free-photo/small-business-owner-packing-product-parcel-boxes-delivery_53876-127277.jpg?_wi=4" }] }
|
||||
{ title: "Real Estate Services", description: "California-licensed expertise to maximize sale proceeds for care.", icon: Home, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-family-celebrating-birthday_23-2150599031.jpg?_wi=3" }, { imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-family-celebrating-birthday_23-2150599031.jpg?_wi=3" }] },
|
||||
{ title: "Senior Placement", description: "Personally toured and vetted facilities at no cost to you.", icon: Building, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/full-shot-smiley-couple-with-drinks_23-2149391034.jpg?_wi=3" }, { imageSrc: "http://img.b2bpic.net/free-photo/full-shot-smiley-couple-with-drinks_23-2149391034.jpg?_wi=3" }] },
|
||||
{ title: "Downsizing Management", description: "Packing, estate coordination, and moving day support.", icon: Package, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/small-business-owner-packing-product-parcel-boxes-delivery_53876-127277.jpg?_wi=3" }, { imageSrc: "http://img.b2bpic.net/free-photo/small-business-owner-packing-product-parcel-boxes-delivery_53876-127277.jpg?_wi=3" }] }
|
||||
]}
|
||||
title="Integrated Services"
|
||||
description="A holistic approach to your senior's care and home transition."
|
||||
@@ -58,8 +58,8 @@ export default function ServicesPage() {
|
||||
title="Service Details"
|
||||
description="Comprehensive care management."
|
||||
features={[
|
||||
{ title: "Real Estate", description: "Selling with care.", icon: Home, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-family-celebrating-birthday_23-2150599031.jpg?_wi=5" }, { imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-family-celebrating-birthday_23-2150599031.jpg?_wi=6" }] },
|
||||
{ title: "Placement", description: "Right fit community.", icon: Building, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/full-shot-smiley-couple-with-drinks_23-2149391034.jpg?_wi=5" }, { imageSrc: "http://img.b2bpic.net/free-photo/full-shot-smiley-couple-with-drinks_23-2149391034.jpg?_wi=6" }] }
|
||||
{ title: "Real Estate", description: "Selling with care.", icon: Home, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-family-celebrating-birthday_23-2150599031.jpg?_wi=5" }, { imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-family-celebrating-birthday_23-2150599031.jpg?_wi=5" }] },
|
||||
{ title: "Placement", description: "Right fit community.", icon: Building, mediaItems: [{ imageSrc: "http://img.b2bpic.net/free-photo/full-shot-smiley-couple-with-drinks_23-2149391034.jpg?_wi=5" }, { imageSrc: "http://img.b2bpic.net/free-photo/full-shot-smiley-couple-with-drinks_23-2149391034.jpg?_wi=5" }] }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -69,7 +69,7 @@ export default function ServicesPage() {
|
||||
logoText="Palante STS"
|
||||
columns={[
|
||||
{ title: "Company", items: [{ label: "About", href: "/about" }, { 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: "Contact", items: [{ label: "Schedule Consultation", href: "/contact" }, { label: "Email: hello@gopalante.com", href: "mailto:hello@gopalante.com" }, { label: "Text/Call: (213) 706-0093", href: "tel:2137060093" }] },
|
||||
{ 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"
|
||||
@@ -78,4 +78,4 @@ export default function ServicesPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user