"use client"; import { motion } from "framer-motion"; import { Sparkles } from "lucide-react"; export function ComingSoon({ title, description }: { title: string; description?: string }) { return (

{title}

{description || "This feature is being built with AI-native capabilities. Coming soon."}

In Development
); }