import { Zap, Shield, Globe, Layers, Cpu, Terminal } from 'lucide-react' const features = [ { name: 'Instant Generation', description: 'Convert plain text descriptions into complex code structures instantly.', icon: Zap, }, { name: 'Secure Environment', description: 'Your code runs in isolated, sandboxed environments for maximum security.', icon: Shield, }, { name: 'Global Collaboration', description: 'Share live notebooks with teams across the globe in real-time.', icon: Globe, }, { name: 'Multi-Layer Support', description: 'Support for Python, JavaScript, Rust, and Go in a single interface.', icon: Layers, }, { name: 'Neural Processing', description: 'Built on advanced neural networks to understand context better.', icon: Cpu, }, { name: 'CLI Integration', description: 'Connect your local workflow with our powerful command line tools.', icon: Terminal, }, ] export default function Features() { return (

Everything you need to build faster

Deepnote isn't just a notebook. It's a complete development environment powered by AI.

{features.map((feature) => (

{feature.name}

{feature.description}

))}
) }