"use client"; import { DrawingPinFilledIcon } from "@radix-ui/react-icons"; import { Event, Participant, User } from "@repo/db"; import ModalBtn from "./Modal"; import MDEditor from "@uiw/react-md-editor"; import { Badge } from "@repo/shared-components"; export const EventCard = ({ user, event, }: { user: User; event: Event & { Participants: Participant[]; }; }) => { return (