Spaces:
Build error
Build error
Upload components/Features.js with huggingface_hub
Browse files- components/Features.js +61 -0
components/Features.js
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import { Zap, Shield, Globe, Layers, Cpu, Terminal } from 'lucide-react'
|
| 2 |
+
|
| 3 |
+
const features = [
|
| 4 |
+
{
|
| 5 |
+
name: 'Instant Generation',
|
| 6 |
+
description: 'Convert plain text descriptions into complex code structures instantly.',
|
| 7 |
+
icon: Zap,
|
| 8 |
+
},
|
| 9 |
+
{
|
| 10 |
+
name: 'Secure Environment',
|
| 11 |
+
description: 'Your code runs in isolated, sandboxed environments for maximum security.',
|
| 12 |
+
icon: Shield,
|
| 13 |
+
},
|
| 14 |
+
{
|
| 15 |
+
name: 'Global Collaboration',
|
| 16 |
+
description: 'Share live notebooks with teams across the globe in real-time.',
|
| 17 |
+
icon: Globe,
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
name: 'Multi-Layer Support',
|
| 21 |
+
description: 'Support for Python, JavaScript, Rust, and Go in a single interface.',
|
| 22 |
+
icon: Layers,
|
| 23 |
+
},
|
| 24 |
+
{
|
| 25 |
+
name: 'Neural Processing',
|
| 26 |
+
description: 'Built on advanced neural networks to understand context better.',
|
| 27 |
+
icon: Cpu,
|
| 28 |
+
},
|
| 29 |
+
{
|
| 30 |
+
name: 'CLI Integration',
|
| 31 |
+
description: 'Connect your local workflow with our powerful command line tools.',
|
| 32 |
+
icon: Terminal,
|
| 33 |
+
},
|
| 34 |
+
]
|
| 35 |
+
|
| 36 |
+
export default function Features() {
|
| 37 |
+
return (
|
| 38 |
+
<div className="py-24 bg-brand-dark relative" id="features">
|
| 39 |
+
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 40 |
+
<div className="text-center mb-16">
|
| 41 |
+
<h2 className="text-3xl font-bold text-white mb-4">Everything you need to build faster</h2>
|
| 42 |
+
<p className="text-gray-400 max-w-2xl mx-auto">
|
| 43 |
+
Deepnote isn't just a notebook. It's a complete development environment powered by AI.
|
| 44 |
+
</p>
|
| 45 |
+
</div>
|
| 46 |
+
|
| 47 |
+
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
|
| 48 |
+
{features.map((feature) => (
|
| 49 |
+
<div key={feature.name} className="glass-panel p-6 rounded-xl hover:border-gray-600 transition-colors group">
|
| 50 |
+
<div className="w-12 h-12 bg-gray-800 rounded-lg flex items-center justify-center mb-4 text-brand-accent group-hover:text-white group-hover:bg-brand-accent transition-all">
|
| 51 |
+
<feature.icon size={24} />
|
| 52 |
+
</div>
|
| 53 |
+
<h3 className="text-xl font-bold text-white mb-2">{feature.name}</h3>
|
| 54 |
+
<p className="text-gray-400 leading-relaxed">{feature.description}</p>
|
| 55 |
+
</div>
|
| 56 |
+
))}
|
| 57 |
+
</div>
|
| 58 |
+
</div>
|
| 59 |
+
</div>
|
| 60 |
+
)
|
| 61 |
+
}
|