import React from 'react'; import { LucideIcon } from 'lucide-react'; import { cn } from '@/lib/utils'; interface FeatureBadgeProps { icon: LucideIcon; title: string; subtitle: string; } export const FeatureBadge: React.FC = ({ icon: Icon, title, subtitle }) => (
{title}
{subtitle}
); interface FeatureItemProps { feature: string; index: number; } export const FeatureItem: React.FC = ({ feature, index }) => (
{feature}
); interface SectionTitleProps { icon: LucideIcon; title: string; } export const SectionTitle: React.FC = ({ icon: Icon, title }) => (

{title}

);