File size: 1,123 Bytes
6dee33f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
31
32
33
import { siteConfig } from '@/lib/site'

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) => (
            <div
              key={index}
              className="p-6 bg-white dark:bg-gray-800 rounded-lg shadow-lg"
            >
              <div
                className="w-12 h-12 rounded-lg mb-4"
                style={{
                  background: `linear-gradient(135deg, ${siteConfig.primaryColor}, ${siteConfig.secondaryColor})`
                }}
              />
              <h3 className="text-lg font-semibold mb-2">{feature}</h3>
              <p className="text-gray-600 dark:text-gray-400">
                Powerful tools and features to enhance your workflow.
              </p>
            </div>
          ))}
        </div>
      </div>
    </section>
  )
}