"use client"; import { motion } from "framer-motion"; import { Rocket } from "lucide-react"; import { EventCardProps } from "@/types/space" export default function EventCard({ title, targetDate, icon }: EventCardProps) { return (
{icon || }

{title}

02: 14: 55

T-Minus to Horizon

); }