Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 70e7ae767d | |||
| 0cf3eeacbf |
183
src/app/page.tsx
183
src/app/page.tsx
@@ -31,21 +31,13 @@ export default function LandingPage() {
|
|||||||
<NavbarLayoutFloatingOverlay
|
<NavbarLayoutFloatingOverlay
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "home"},
|
||||||
id: "home",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "About",
|
name: "About", id: "about"},
|
||||||
id: "about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Programs",
|
name: "Programs", id: "features"},
|
||||||
id: "features",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "contact"},
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="EmpowerCare"
|
brandName="EmpowerCare"
|
||||||
/>
|
/>
|
||||||
@@ -54,20 +46,15 @@ export default function LandingPage() {
|
|||||||
<div id="home" data-section="home">
|
<div id="home" data-section="home">
|
||||||
<HeroSplitDualMedia
|
<HeroSplitDualMedia
|
||||||
background={{
|
background={{
|
||||||
variant: "gradient-bars",
|
variant: "gradient-bars"}}
|
||||||
}}
|
|
||||||
title="Compassionate Support for Your Community"
|
title="Compassionate Support for Your Community"
|
||||||
description="Empowering individuals and families through dedicated social work services. We provide guidance, resources, and care tailored to your needs."
|
description="Empowering individuals and families through dedicated social work services. We provide guidance, resources, and care tailored to your needs."
|
||||||
tag="Trusted Social Care"
|
tag="Trusted Social Care"
|
||||||
mediaItems={[
|
mediaItems={[
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/people-meeting-support-group_23-2151079543.jpg",
|
imageSrc: "http://img.b2bpic.net/free-photo/people-meeting-support-group_23-2151079543.jpg", imageAlt: "Support team in meeting"},
|
||||||
imageAlt: "Support team in meeting",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/people-doing-volunteer-work-foodbank_23-2149012252.jpg?_wi=1",
|
imageSrc: "http://img.b2bpic.net/free-photo/people-doing-volunteer-work-foodbank_23-2149012252.jpg?_wi=1", imageAlt: "Care outreach planning"},
|
||||||
imageAlt: "Care outreach planning",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
rating={5}
|
rating={5}
|
||||||
@@ -75,13 +62,9 @@ export default function LandingPage() {
|
|||||||
tagIcon={Heart}
|
tagIcon={Heart}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Get Support",
|
text: "Get Support", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Learn More",
|
text: "Learn More", href: "#about"},
|
||||||
href: "#about",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -93,17 +76,11 @@ export default function LandingPage() {
|
|||||||
description="With years of dedicated experience, we facilitate positive changes in lives by providing resources, mental health advocacy, and social safety nets."
|
description="With years of dedicated experience, we facilitate positive changes in lives by providing resources, mental health advocacy, and social safety nets."
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
value: "12+",
|
value: "12+", title: "Years Experience"},
|
||||||
title: "Years Experience",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
value: "2500+",
|
value: "2500+", title: "Families Served"},
|
||||||
title: "Families Served",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
value: "15",
|
value: "15", title: "Active Programs"},
|
||||||
title: "Active Programs",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/people-doing-volunteer-work-foodbank_23-2149012252.jpg?_wi=2"
|
imageSrc="http://img.b2bpic.net/free-photo/people-doing-volunteer-work-foodbank_23-2149012252.jpg?_wi=2"
|
||||||
imageAlt="Community care planning"
|
imageAlt="Community care planning"
|
||||||
@@ -119,18 +96,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
negativeCard={{
|
negativeCard={{
|
||||||
items: [
|
items: [
|
||||||
"Crisis intervention",
|
"Crisis intervention", "Emergency housing aid", "Limited immediate counseling"],
|
||||||
"Emergency housing aid",
|
|
||||||
"Limited immediate counseling",
|
|
||||||
],
|
|
||||||
}}
|
}}
|
||||||
positiveCard={{
|
positiveCard={{
|
||||||
items: [
|
items: [
|
||||||
"Family advocacy",
|
"Family advocacy", "Mental health referral", "Long-term goal planning", "Resource navigation"],
|
||||||
"Mental health referral",
|
|
||||||
"Long-term goal planning",
|
|
||||||
"Resource navigation",
|
|
||||||
],
|
|
||||||
}}
|
}}
|
||||||
title="Comprehensive Support Services"
|
title="Comprehensive Support Services"
|
||||||
description="We offer structured pathways to help you and your family navigate life's challenges."
|
description="We offer structured pathways to help you and your family navigate life's challenges."
|
||||||
@@ -143,45 +113,13 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Elena Ross", date: "Jan 2024", title: "Life Changing", quote: "The support I received helped my family navigate a very difficult season. Truly grateful.", tag: "Counseling", avatarSrc: "http://img.b2bpic.net/free-photo/vertical-outdoor-shot-attractive-woman-has-long-dark-hair-positive-facial-expression_273609-44811.jpg", imageSrc: "http://img.b2bpic.net/free-photo/wooden-bench-park-filtered-image-processed-vintage-effe_1232-2317.jpg"},
|
||||||
name: "Elena Ross",
|
|
||||||
date: "Jan 2024",
|
|
||||||
title: "Life Changing",
|
|
||||||
quote: "The support I received helped my family navigate a very difficult season. Truly grateful.",
|
|
||||||
tag: "Counseling",
|
|
||||||
avatarSrc: "http://img.b2bpic.net/free-photo/vertical-outdoor-shot-attractive-woman-has-long-dark-hair-positive-facial-expression_273609-44811.jpg",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/wooden-bench-park-filtered-image-processed-vintage-effe_1232-2317.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Marcus Thorne", date: "Nov 2023", title: "Professionalism", quote: "Their advocacy services were essential to our success. Highly recommend to everyone.", tag: "Advocacy", avatarSrc: "http://img.b2bpic.net/free-photo/middle-age-grey-haired-man-wearing-casual-clothes-pointing-fingers-camera-with-happy-funny-face-good-energy-vibes_839833-14195.jpg", imageSrc: "http://img.b2bpic.net/free-photo/corner-open-office-space-with-modern-interior-design_181624-17688.jpg"},
|
||||||
name: "Marcus Thorne",
|
|
||||||
date: "Nov 2023",
|
|
||||||
title: "Professionalism",
|
|
||||||
quote: "Their advocacy services were essential to our success. Highly recommend to everyone.",
|
|
||||||
tag: "Advocacy",
|
|
||||||
avatarSrc: "http://img.b2bpic.net/free-photo/middle-age-grey-haired-man-wearing-casual-clothes-pointing-fingers-camera-with-happy-funny-face-good-energy-vibes_839833-14195.jpg",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/corner-open-office-space-with-modern-interior-design_181624-17688.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Sarah Jenkins", date: "Sep 2023", title: "Empowerment", quote: "They helped me gain access to resources I didn't even know existed. Empowering work.", tag: "Resource Aid", avatarSrc: "http://img.b2bpic.net/free-photo/businessman-pointing-camera-against-grey-wall_23-2148112876.jpg", imageSrc: "http://img.b2bpic.net/free-photo/still-life-interior-details-living-room-decor_169016-6008.jpg"},
|
||||||
name: "Sarah Jenkins",
|
|
||||||
date: "Sep 2023",
|
|
||||||
title: "Empowerment",
|
|
||||||
quote: "They helped me gain access to resources I didn't even know existed. Empowering work.",
|
|
||||||
tag: "Resource Aid",
|
|
||||||
avatarSrc: "http://img.b2bpic.net/free-photo/businessman-pointing-camera-against-grey-wall_23-2148112876.jpg",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/still-life-interior-details-living-room-decor_169016-6008.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "David Wu", date: "Aug 2023", title: "Guidance", quote: "Patient, kind, and incredibly knowledgeable. Exactly what our neighborhood needed.", tag: "General Support", avatarSrc: "http://img.b2bpic.net/free-photo/attractive-young-woman-with-cutlery-restaurant_169016-21627.jpg", imageSrc: "http://img.b2bpic.net/free-photo/empty-road-through-golden-autumn-forest-warm-sunlight-autumn-highway_169016-70030.jpg"},
|
||||||
name: "David Wu",
|
|
||||||
date: "Aug 2023",
|
|
||||||
title: "Guidance",
|
|
||||||
quote: "Patient, kind, and incredibly knowledgeable. Exactly what our neighborhood needed.",
|
|
||||||
tag: "General Support",
|
|
||||||
avatarSrc: "http://img.b2bpic.net/free-photo/attractive-young-woman-with-cutlery-restaurant_169016-21627.jpg",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/empty-road-through-golden-autumn-forest-warm-sunlight-autumn-highway_169016-70030.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Stories of Hope"
|
title="Stories of Hope"
|
||||||
description="See how our community-focused services have helped others rebuild and thrive."
|
description="See how our community-focused services have helped others rebuild and thrive."
|
||||||
@@ -194,24 +132,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", title: "Are your social work services free?", content: "Many of our core community support and advocacy programs are offered at no cost to eligible families, supported by our local partners."},
|
||||||
title: "Are your services free?",
|
|
||||||
content: "Many of our core community support programs are provided at no cost, thanks to our generous partners.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", title: "How can I schedule a consultation?", content: "You can easily request an appointment through our online contact form, call our support line, or visit our local outreach center."},
|
||||||
title: "How do I request an appointment?",
|
|
||||||
content: "You can fill out our online contact form, call our office, or walk into our community center during business hours.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", title: "Do you offer emergency assistance?", content: "While we focus on long-term family stability, we provide immediate crisis intervention resources and connections to emergency shelters."},
|
||||||
title: "Do you offer emergency support?",
|
{
|
||||||
content: "We do provide crisis intervention services and can help coordinate with local emergency support providers.",
|
id: "4", title: "Who is eligible for your programs?", content: "We serve all community members. Eligibility is determined during a brief initial assessment to ensure we provide the right support services for your needs."}
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/trans-person-working-office-with-colleagues_23-2149286973.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/trans-person-working-office-with-colleagues_23-2149286973.jpg"
|
||||||
title="Frequently Asked Questions"
|
title="Frequently Asked Questions"
|
||||||
description="Have questions? We have answers to help you get started with our services."
|
description="Find clear answers regarding our social work services, eligibility, and how to start your journey with us."
|
||||||
faqsAnimation="slide-up"
|
faqsAnimation="slide-up"
|
||||||
imageAlt="Customer support assistance"
|
imageAlt="Customer support assistance"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
@@ -222,11 +153,10 @@ export default function LandingPage() {
|
|||||||
<ContactSplit
|
<ContactSplit
|
||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
background={{
|
background={{
|
||||||
variant: "gradient-bars",
|
variant: "gradient-bars"}}
|
||||||
}}
|
|
||||||
tag="Get In Touch"
|
tag="Get In Touch"
|
||||||
title="Need Help? Reach Out Today"
|
title="Need Support? Contact Our Team"
|
||||||
description="Take the first step toward getting the help you or your family needs. We are here to listen."
|
description="Our dedicated social workers are here to help. Reach out to discuss your specific needs or to learn about our upcoming programs."
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/african-american-wheelchair-user_482257-76237.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/african-american-wheelchair-user_482257-76237.jpg"
|
||||||
mediaPosition="right"
|
mediaPosition="right"
|
||||||
imageAlt="Support team workspace"
|
imageAlt="Support team workspace"
|
||||||
@@ -238,54 +168,27 @@ export default function LandingPage() {
|
|||||||
<FooterBaseReveal
|
<FooterBaseReveal
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Services",
|
title: "Our Services", items: [
|
||||||
items: [
|
{ label: "Mental Health Counseling", href: "#" },
|
||||||
{
|
{ label: "Family Resource Navigation", href: "#" },
|
||||||
label: "Counseling",
|
{ label: "Crisis Intervention", href: "#" },
|
||||||
href: "#",
|
{ label: "Housing Stabilization", href: "#" }
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Resource Aid",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Housing Support",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "About",
|
title: "Support Us", items: [
|
||||||
items: [
|
{ label: "Donate Funds", href: "#" },
|
||||||
{
|
{ label: "Volunteer Programs", href: "#" },
|
||||||
label: "Our Story",
|
{ label: "Partnerships", href: "#" },
|
||||||
href: "#",
|
{ label: "Our Mission", href: "#" }
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Careers",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Privacy",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Community",
|
title: "Legal & Policy", items: [
|
||||||
items: [
|
{ label: "Privacy Policy", href: "#" },
|
||||||
{
|
{ label: "Terms of Service", href: "#" },
|
||||||
label: "Get Involved",
|
{ label: "Accessibility", href: "#" },
|
||||||
href: "#",
|
{ label: "Annual Reports", href: "#" }
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "Partners",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: "News",
|
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
@@ -295,4 +198,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user