-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathFeatures.jsx
More file actions
31 lines (29 loc) · 1.02 KB
/
Features.jsx
File metadata and controls
31 lines (29 loc) · 1.02 KB
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
import { featuresData } from "./content";
const Features = () => {
return (
<div
className="mt-24 py-24 px-10 flex flex-col items-center justify-between space-y-12 bg-[#060606]"
id="features"
>
<div className="text-left font-bold text-5xl text-white flex flex-col items-start justify-between space-y-3 ">
<h1> Features </h1>
<div className="w-28 h-2 bg-[#687eff] rounded"></div>
</div>
<div className="grid grid-cols-1 md:grid-cols-3 gap-6 items-start justify-between">
{featuresData.map((feature, index) => (
<div
key={index}
className="px-3 py-10 flex flex-col items-center justify-between space-y-2 bg-[#161616] rounded"
>
{feature.icon}
<h1 className="uppercase font-bold text-xl text-white">
{feature.title}
</h1>
<p className="text-center text-[#767676]">{feature.description}</p>
</div>
))}
</div>
</div>
);
};
export default Features;