const features = [ { icon: "shield_person", title: "Sovereign Intelligence", description: "Built on Sarvam 105B for high-performance localized reasoning that respects data sovereignty and cultural context.", }, { icon: "verified", title: "Citations First", description: "Priority access to .gov.in sources and primary legal documents for verified, trustworthy, and hallucination-free information.", }, { icon: "psychology_alt", title: "Multimodal Freedom", description: "Seamlessly interact through Saaras Voice and Sarvam Vision, enabling natural language communication across Indian dialects.", }, ]; export default function FeaturesSection() { return (
{features.map((feature) => (
{feature.icon}

{feature.title}

{feature.description}

Learn more{" "} arrow_forward
))}
); }