'use client'; import React from 'react'; import Link from 'next/link'; import Image from 'next/image'; import Hero from '../components/molecules/Hero'; // Featured Event Card Component interface EventCardProps { title: string; description: string; date: string; imageUrl?: string; slug: string; } const EventCard: React.FC = ({ title, description, date, imageUrl, slug }) => { return (
{imageUrl ? ( {title} ) : (
No image available
)}

{title}

{description}

{date} Learn more
); }; export default function Home() { return ( <> {/* Hero Section */} {/* Featured events section */}

Featured Events

View All Events
{/* About section with video */}

About OCD

Olathe Club of the Deaf (OCD) is a non-profit organization dedicated to serving the deaf and hard-of-hearing community in Olathe and surrounding areas.

Our mission is to promote social, educational, and recreational opportunities for deaf individuals and their families while fostering a sense of community and belonging.

Founded in 1975, we have a rich history of advocacy and community service, working to bridge the gap between the deaf and hearing communities.

Learn More About Us

ASL Video Introduction

{/* Video player will be implemented here */}
{/* Membership Benefits */}

Membership Benefits

Community Events

Access to all OCD community events, socials, and gatherings throughout the year.

Voting Rights

Have your say in club decisions and vote in board elections.

Support Network

Connect with a supportive network of deaf and hard-of-hearing individuals.

Become A Member
{/* Call to action */}

Join Our Community

Become a member today and connect with the deaf community in Olathe.

Become a Member Support Our Mission
); }