File size: 1,189 Bytes
23c1680
bbc67f0
23c1680
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
import { siteConfig } from '@/lib/site'
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'

export function Features() {
  return (
    <section className="py-24 px-4 bg-gray-50 dark:bg-gray-900">
      <div className="max-w-7xl mx-auto">
        <h2 className="text-3xl md:text-4xl font-bold text-center mb-12">
          Key Features
        </h2>
        <div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
          {siteConfig.features.map((feature, index) => (
            <Card key={index} className="border-2 hover:border-black dark:hover:border-white transition-colors">
              <CardHeader>
                <div className="w-12 h-12 rounded mb-4 bg-gradient-to-br from-gray-900 to-gray-600 dark:from-gray-100 dark:to-gray-400" />
                <CardTitle className="font-mono">{feature}</CardTitle>
              </CardHeader>
              <CardContent>
                <CardDescription>
                  Developer tools and utilities for modern workflows.
                </CardDescription>
              </CardContent>
            </Card>
          ))}
        </div>
      </div>
    </section>
  )
}