'use client' import { Code2, BookOpen, Lightbulb } from 'lucide-react' const features = [ { title: 'Open Source', description: 'Building and contributing to open-source projects that impact the Nepali tech community', icon: Code2, color: 'from-green-400 to-green-600', bgColor: 'bg-green-50 dark:bg-green-900/50', hoverBg: 'hover:bg-green-100 dark:hover:bg-green-800/60', borderColor: 'border-green-200 dark:border-green-700', }, { title: 'Open Research', description: 'Advancing knowledge through collaborative research on local tech challenges', icon: BookOpen, color: 'from-purple-400 to-purple-600', bgColor: 'bg-purple-50 dark:bg-purple-900/50', hoverBg: 'hover:bg-purple-100 dark:hover:bg-purple-800/60', borderColor: 'border-purple-200 dark:border-purple-700', }, { title: 'Nepal Needs', description: 'Identifying and solving real problems faced by businesses and communities in Nepal', icon: Lightbulb, color: 'from-blue-400 to-blue-600', bgColor: 'bg-blue-50 dark:bg-blue-900/50', hoverBg: 'hover:bg-blue-100 dark:hover:bg-blue-800/60', borderColor: 'border-blue-200 dark:border-blue-700', }, ] export function FeaturesSection() { return (

What We Do

We focus on three core pillars to drive innovation in Nepal's tech ecosystem

{features.map((feature, index) => { const Icon = feature.icon return (

{feature.title}

{feature.description}

) })}
) }