107 lines
5.7 KiB
TypeScript
107 lines
5.7 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
|
import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen";
|
|
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
|
import { Target } from "lucide-react";
|
|
import Link from "next/link";
|
|
|
|
export default function ProgramsPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="hover-bubble"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="soft"
|
|
contentWidth="smallMedium"
|
|
sizing="mediumSizeLargeTitles"
|
|
background="circleGradient"
|
|
cardStyle="outline"
|
|
primaryButtonStyle="radial-glow"
|
|
secondaryButtonStyle="glass"
|
|
headingFontWeight="medium"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleApple
|
|
brandName="CRPHI"
|
|
navItems={[
|
|
{ name: "Home", id: "/" },
|
|
{ name: "About", id: "/about" },
|
|
{ name: "Programs", id: "/programs" },
|
|
{ name: "Impact", id: "/impact" },
|
|
{ name: "Team", id: "/team" },
|
|
{ name: "Contact", id: "/contact" }
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="features" data-section="features">
|
|
<FeatureCardNineteen
|
|
title="Our Core Programs"
|
|
description="CRPHI delivers comprehensive public health programs addressing major health challenges and community needs."
|
|
tag="Key Initiatives"
|
|
tagIcon={Target}
|
|
tagAnimation="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
features={[
|
|
{
|
|
id: 1,
|
|
tag: "Prevention", title: "Disease Prevention Initiative", subtitle: "Reducing preventable diseases through evidence-based interventions", description: "We develop and implement comprehensive disease prevention programs including vaccination drives, health screenings, and community health education. Our initiatives focus on reducing communicable and non-communicable diseases through community engagement and behavioral change strategies.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQF4Twdf4AK5BwKuzUNr2XnxWv/healthcare-workers-conducting-health-edu-1772516791698-b13e1979.png", imageAlt: "Disease prevention and vaccination programs", buttons: [{ text: "Learn More", href: "programs" }]
|
|
},
|
|
{
|
|
id: 2,
|
|
tag: "Research", title: "Epidemiological Research", subtitle: "Investigating health trends and disease patterns", description: "Our research team conducts rigorous epidemiological studies to understand disease patterns, risk factors, and effective interventions. We analyze health data to inform policy and practice decisions that improve public health outcomes at scale.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQF4Twdf4AK5BwKuzUNr2XnxWv/public-health-researchers-conducting-epi-1772516791756-16a82424.png", imageAlt: "Public health research and data analysis", buttons: [{ text: "Learn More", href: "programs" }]
|
|
},
|
|
{
|
|
id: 3,
|
|
tag: "Community", title: "Community Health Programs", subtitle: "Empowering communities with health resources", description: "We partner with local communities to develop culturally appropriate health programs. Our community health workers provide education, support, and resources to promote health literacy and improve access to care for underserved populations.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AQF4Twdf4AK5BwKuzUNr2XnxWv/community-health-workers-engaging-with-d-1772516792831-98a6b2eb.png", imageAlt: "Community health workers engaging with diverse populations", buttons: [{ text: "Learn More", href: "programs" }]
|
|
}
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterBaseCard
|
|
logoText="CRPHI"
|
|
columns={[
|
|
{
|
|
title: "Organization", items: [
|
|
{ label: "About Us", href: "/about" },
|
|
{ label: "Our Team", href: "/team" },
|
|
{ label: "Careers", href: "#" },
|
|
{ label: "Contact Us", href: "/contact" }
|
|
]
|
|
},
|
|
{
|
|
title: "Programs", items: [
|
|
{ label: "Disease Prevention", href: "/programs" },
|
|
{ label: "Research Initiatives", href: "/programs" },
|
|
{ label: "Community Health", href: "/programs" },
|
|
{ label: "Health Equity", href: "/programs" }
|
|
]
|
|
},
|
|
{
|
|
title: "Resources", items: [
|
|
{ label: "Publications", href: "#" },
|
|
{ label: "Health Data", href: "#" },
|
|
{ label: "News & Updates", href: "#" },
|
|
{ label: "Events", href: "#" }
|
|
]
|
|
},
|
|
{
|
|
title: "Connect", items: [
|
|
{ label: "Partnership Opportunities", href: "#" },
|
|
{ label: "Support Our Work", href: "#" },
|
|
{ label: "Subscribe Newsletter", href: "#" },
|
|
{ label: "Follow Us", href: "#" }
|
|
]
|
|
}
|
|
]}
|
|
copyrightText="© 2025 CRPHI - Center for Research on Public Health Innovation. All rights reserved."
|
|
ariaLabel="CRPHI Footer"
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
} |