'use client' import Link from 'next/link' import { motion } from 'framer-motion' import { LucideIcon } from 'lucide-react' import { LiveIndicator } from './LiveIndicator' interface FeatureCardProps { icon: LucideIcon title: string description: string href: string stat?: string status?: 'live' | 'offline' | 'pending' } export function FeatureCard({ icon: Icon, title, description, href, stat, status = 'live', }: FeatureCardProps) { return (

{title}

{description}

{stat && (
{stat}
)}
) }