Spaces:
Sleeping
Sleeping
| export default function Features() { | |
| const items = [ | |
| "AI Website Generation", | |
| "Responsive Design", | |
| "SEO Optimization" | |
| ] | |
| return ( | |
| <section className="grid gap-6 px-6 py-16 md:grid-cols-3"> | |
| {items.map((item) => ( | |
| <div | |
| key={item} | |
| className="rounded-xl border p-6" | |
| > | |
| {item} | |
| </div> | |
| ))} | |
| </section> | |
| ) | |
| } | |