import { ny } from "@/lib/utils"; export default function Feature({ title, description, children, color, }: { title: string; description: string; children: React.ReactNode; color: string; }) { return (

{title}

{description}

{children}
); } export function FeatureCard({ title, description, todo = false, }: { title: string; description: string; todo?: boolean; }) { return (
{title}
{description}
{todo && (
Coming soon
)}
); }