diff --git a/src/components/events/EventHeaders.tsx b/src/components/events/EventHeaders.tsx index 6b57a09..b0f0583 100644 --- a/src/components/events/EventHeaders.tsx +++ b/src/components/events/EventHeaders.tsx @@ -1,3 +1,5 @@ +"use client"; +import { motion } from "framer-motion"; import Header from "@/components/Header"; type EventProps = { @@ -10,12 +12,15 @@ type EventProps = { const Event = ({ name, description, location, time, side }: EventProps) => { return ( -
@@ -26,7 +31,7 @@ const Event = ({ name, description, location, time, side }: EventProps) => {

{location}

{time}

-
+ ); };