Files
32f3fefd-ea76-470b-9cff-2b3…/src/app/how-it-works/page.tsx

90 lines
4.1 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="small"
sizing="mediumLargeSizeLargeTitles"
background="noise"
cardStyle="gradient-bordered"
primaryButtonStyle="gradient"
secondaryButtonStyle="layered"
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="faq-page" data-section="faq-page">
<FaqDouble
textboxLayout="default"
useInvertedBackground={false}
faqs={[
{ id: "f0", title: "How does Palante get paid?", content: "It depends on which services you use. For senior living placement, we are paid a referral fee directly by the community your loved one moves into — there is no cost to your family. For real estate services, we earn a standard agent commission from the home sale proceeds, just like any licensed Realtor. For downsizing and transition management, we charge a service fee discussed upfront during your free consultation. We will always explain our compensation clearly before you engage any service — no surprises." },
{ 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: "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: "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." },
]}
title="Frequently Asked Questions"
description="Answers to common concerns for families beginning the transition process."
faqsAnimation="slide-up"
/>
</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: (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"
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}