diff --git a/client/src/components/EventCard.tsx b/client/src/components/EventCard.tsx index 3816622..e16dd8c 100644 --- a/client/src/components/EventCard.tsx +++ b/client/src/components/EventCard.tsx @@ -12,14 +12,26 @@ const EventCard: React.FC = ({ event }) => { return ( -

{event.title}

-

{event.formattedDateRange}

-

{event.description}

-

Address: {event.address}

-

Contact: {event.pointOfContact}

+

{event.title}

+

{event.formattedDateRange}

+

{event.description}

+
+ Address: {event.address} +
+
+ Contact:{' '} + + {event.pointOfContact} + +
); }; -export default EventCard; + +export default EventCard; \ No newline at end of file diff --git a/client/src/components/Header.tsx b/client/src/components/Header.tsx index b19bf9a..d7dcff6 100644 --- a/client/src/components/Header.tsx +++ b/client/src/components/Header.tsx @@ -3,6 +3,12 @@ import { Link } from 'react-router-dom'; import { motion, AnimatePresence } from 'framer-motion'; import Modal from 'react-modal'; +interface NavItemProps { + href: string; + children: React.ReactNode; + onClick?: () => void; +} + const Header: React.FC = () => { const [isMenuOpen, setIsMenuOpen] = useState(false); const [isDonateModalOpen, setIsDonateModalOpen] = useState(false); @@ -20,12 +26,12 @@ const Header: React.FC = () => { }; return ( -
+
MCDi Logo -

Missoula Council of the Deaf, Inc

+

Missoula Council of the Deaf, Inc