106 lines
5.4 KiB
TypeScript
106 lines
5.4 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
|
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
|
|
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
|
|
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
|
|
import ContactText from '@/components/sections/contact/ContactText';
|
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
|
|
|
export default function LandingPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="icon-arrow"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="pill"
|
|
contentWidth="medium"
|
|
sizing="largeSmallSizeLargeTitles"
|
|
background="grid"
|
|
cardStyle="glass-elevated"
|
|
primaryButtonStyle="gradient"
|
|
secondaryButtonStyle="radial-glow"
|
|
headingFontWeight="normal"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingOverlay
|
|
navItems={[
|
|
{ name: "Home", id: "/" },
|
|
{ name: "Services", id: "/services" },
|
|
{ name: "How It Works", id: "/how-it-works" },
|
|
{ name: "Contact", id: "/contact" },
|
|
]}
|
|
brandName="Palante STS"
|
|
/>
|
|
</div>
|
|
|
|
<div id="hero" data-section="hero">
|
|
<HeroSplitDualMedia
|
|
title="Helping Aging Parents? You're Not Alone."
|
|
description="Palante STS provides clear, expert guidance to manage senior transitions with dignity and calm."
|
|
background={{ variant: "sparkles-gradient" }}
|
|
tag="Compassionate Transition Experts"
|
|
buttons={[{ text: "Get Your Free Consultation", href: "/contact" }]}
|
|
rating={5}
|
|
ratingText="Trusted by 500+ families"
|
|
mediaItems={[{ imageSrc: "http://img.b2bpic.net/free-photo/grandparents-learning-use-technology_23-2149402581.jpg", imageAlt: "Supportive family environment" }, { imageSrc: "http://img.b2bpic.net/free-photo/family-helping-elderly_23-2149402581.jpg", imageAlt: "Professional guidance" }]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="trust" data-section="trust">
|
|
<MetricCardEleven
|
|
title="Why Families Trust Palante"
|
|
description="We help you navigate complex life changes with proven, compassionate strategies."
|
|
animationType="blur-reveal"
|
|
textboxLayout="split-description"
|
|
useInvertedBackground={false}
|
|
metrics={[
|
|
{ id: "t1", value: "20+", title: "Years of Experience", description: "Dedicated to senior care.", imageSrc: "http://img.b2bpic.net/free-photo/shield-icon_23-2149402581.jpg" },
|
|
{ id: "t2", value: "500+", title: "Families Supported", description: "Successfully transitioned.", imageSrc: "http://img.b2bpic.net/free-photo/users-icon_23-2149402581.jpg" },
|
|
{ id: "t3", value: "100%", title: "Personalized Care", description: "Tailored to your family.", imageSrc: "http://img.b2bpic.net/free-photo/heart-icon_23-2149402581.jpg" },
|
|
{ id: "t4", value: "Proven", title: "Reliable Framework", description: "A simple, clear process.", imageSrc: "http://img.b2bpic.net/free-photo/book-icon_23-2149402581.jpg" }
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="services" data-section="services">
|
|
<FeatureCardOne
|
|
title="How Palante Helps Your Family"
|
|
description="We take the burden off your shoulders, managing the logistics of senior living transitions so you can focus on quality time."
|
|
animationType="slide-up"
|
|
textboxLayout="split"
|
|
gridVariant="two-columns-alternating-heights"
|
|
useInvertedBackground={false}
|
|
features={[
|
|
{ title: "Strategic Planning", description: "Customized roadmaps to clarify your path forward.", imageSrc: "http://img.b2bpic.net/free-photo/planning_23-2149402581.jpg" },
|
|
{ title: "Logistical Support", description: "From downsizing to move-in, we manage every detail.", imageSrc: "http://img.b2bpic.net/free-photo/moving_23-2149402581.jpg" },
|
|
{ title: "Family Facilitation", description: "Neutral support to help families agree on the best care plan.", imageSrc: "http://img.b2bpic.net/free-photo/family_23-2149402581.jpg" }
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<ContactText
|
|
text="We're ready to listen and support your family. Schedule your free consultation today."
|
|
buttons={[{ text: "Book Consultation", href: "/contact" }]}
|
|
background={{ variant: "sparkles-gradient" }}
|
|
useInvertedBackground={true}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterLogoEmphasis
|
|
logoText="Palante STS"
|
|
columns={[
|
|
{ items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "How It Works", href: "/how-it-works" }] },
|
|
{ items: [{ label: "Contact", href: "/contact" }] }
|
|
]}
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|