'use client' import { Lock, Zap, LightbulbIcon } from 'lucide-react' const features = [ { name: 'Secure Transactions', description: 'Bank-grade encryption for all your transactions', icon: Lock, }, { name: 'Real-time Updates', description: 'Get instant notifications for all account activities', icon: Zap, }, { name: 'Smart Savings', description: 'AI-powered insights to help you save more', icon: LightbulbIcon, }, ] export function Features() { return (

Features designed for you

{features.map((feature) => (

{feature.name}

{feature.description}

))}
) }