import { Badge } from "@/components/ui/badge" import { Button } from "@/components/ui/button" import { Card, CardAction, CardDescription, CardFooter, CardHeader, CardTitle, } from "@/components/ui/card" export function EventCard({ type, coverImage, eventName, description, startTime, endTime }: { type: 'official' | 'party', coverImage: string, eventName: string, description: string, startTime: string, endTime: string }) { return (
Event cover Featured Design systems meetup A practical talk on component APIs, accessibility, and shipping faster. ) }