import React from 'react'; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'; import { Button } from '@/components/ui/button'; import { LucideIcon } from 'lucide-react'; interface FeaturePlaceholderProps { title: string; description: string; icon: LucideIcon; features: string[]; comingSoon?: boolean; } const FeaturePlaceholder: React.FC = ({ title, description, icon: Icon, features, comingSoon = false }) => { return (

{title}

{comingSoon && ( Coming Soon )}

{description}

Features Overview What you can expect from this feature
{features.map((feature, index) => (

{feature}

))}
{comingSoon ? (

🚀 This feature is under development and will be available soon!

) : ( )}
); }; export default FeaturePlaceholder;