diff --git a/apps/site/src/app/(main)/schedule/components/EventCard.tsx b/apps/site/src/app/(main)/schedule/components/EventCard.tsx index daeb305c..b80aa3b4 100644 --- a/apps/site/src/app/(main)/schedule/components/EventCard.tsx +++ b/apps/site/src/app/(main)/schedule/components/EventCard.tsx @@ -1,7 +1,14 @@ +import { SwordsIcon } from "lucide-react"; import EventProps from "../EventProps"; +import { motion } from "framer-motion"; + import getTimeAndDates from "@/lib/utils/getTimeAndDates"; +interface EventCardProps extends EventProps { + isHappening: boolean; +} + export default function EventCard({ title, location, @@ -11,14 +18,38 @@ export default function EventCard({ organization, hosts, description, -}: EventProps) { + isHappening, +}: EventCardProps) { return ( -
{getTimeAndDates(startTime).day}