import React from "react" import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card" interface FeatureCardProps { title: string description: string icon: React.ElementType } /* TODO: I plan to add a better animation in the future, hover effects are not good here, in my opinion. */ const FeatureCard = ({ title, description, icon: Icon }: FeatureCardProps) => { return ( {title} {description} ) } export default FeatureCard