Compare commits
21 Commits
version_15
...
version_21
| Author | SHA1 | Date | |
|---|---|---|---|
| 2653c7ab90 | |||
| 15791fdfc6 | |||
| f6addfc264 | |||
| 07a8145dc5 | |||
| 4c35d62584 | |||
| b7e4330c6f | |||
| cba60e5b45 | |||
| 36df7f9b39 | |||
| 4084c862c0 | |||
| 7d46efd395 | |||
| 23fe7c196a | |||
| 5a0df5be21 | |||
| 33882aa1c6 | |||
| 57faa6150f | |||
| 22f7873abc | |||
| 9c14b871d7 | |||
| 0f147872df | |||
| 8c4890d6c9 | |||
| 51be7110c1 | |||
| b9143c1ece | |||
| 7f9b28db91 |
@@ -39,13 +39,31 @@ export default function AboutPage() {
|
||||
</div>
|
||||
|
||||
<div id="about-header" data-section="about-header" style={{ backgroundColor: "#F5F5F0" }}>
|
||||
<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 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>
|
||||
|
||||
<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="about-story" data-section="about-story" style={{ backgroundColor: "#F5F5F0" }}>
|
||||
|
||||
@@ -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,110 +24,36 @@ 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: (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>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Palante STS"
|
||||
copyrightText="© 2026 Palante Senior Transition Specialists LLC"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
|
||||
@@ -97,15 +97,14 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{ id: "t1", name: "Sarah J.", handle: "@palante-family", testimonial: "Palante made a difficult time much easier. Highly recommended.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/paper-cut-key-heart-as-symbol-love_1232-3647.jpg?_wi=3" },
|
||||
{ id: "t2", name: "Mark D.", handle: "@palante-family", testimonial: "Their one-expert approach saved us so much time and stress.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-family-celebrating-birthday_23-2150599031.jpg?_wi=2" },
|
||||
{ id: "t3", name: "Elena R.", handle: "@palante-family", testimonial: "Kind, professional, and very knowledgeable about local options.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/full-shot-smiley-couple-with-drinks_23-2149391034.jpg?_wi=2" },
|
||||
{ id: "t4", name: "David W.", handle: "@palante-family", testimonial: "Truly a seamless process from start to finish.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/small-business-owner-packing-product-parcel-boxes-delivery_53876-127277.jpg?_wi=2" },
|
||||
{ id: "t5", name: "Jennifer K.", handle: "@palante-family", testimonial: "Professional yet felt like family helping family.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiling-worker-talking-phone_23-2147562047.jpg" }
|
||||
{ id: "t1", name: "Michael T.", handle: "@michael_t", testimonial: "Palante's personalized guidance through my parents' move was incredible. We felt supported every step of the way.", rating: 5 },
|
||||
{ id: "t2", name: "Jennifer R.", handle: "@jennifer_r", testimonial: "I couldn't have managed the downsizing and house sale without this support. Truly a lifesaver.", rating: 5 },
|
||||
{ id: "t3", name: "David & Carmen L.", handle: "@david_carmen_l", testimonial: "A seamless transition! Professional, compassionate, and so knowledgeable about the local senior housing options.", rating: 5 }
|
||||
]}
|
||||
showRating={true}
|
||||
title="Stories from Families We Serve"
|
||||
description="We are honored to be trusted in life's most important moments."
|
||||
carouselMode="auto"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -134,4 +133,4 @@ export default function LandingPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user