-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.jsx
More file actions
71 lines (68 loc) · 2.21 KB
/
index.jsx
File metadata and controls
71 lines (68 loc) · 2.21 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import * as React from "react";
import { FeatureBlock } from "./FeatureBlock";
import {
HandIcon,
BeakerIcon,
CodeIcon,
ShareIcon,
DesktopComputerIcon,
CurrencyDollarIcon,
} from "@heroicons/react/outline";
const FeaturesCardBlocks = () => {
return (
<section className="py-12 md:py-20">
<div className="m-auto max-w-screen-xl px-6 md:mx-auto">
<h2 className="mx-6 font-medium text-center text-mobile-h2 md:text-desktop-h2 md:mx-0">
But wait, there's more.
</h2>
<div className="mt-6">
<div className="flex flex-col md:flex-row">
<FeatureBlock
img={<HandIcon className="w-6" />}
heading={"1. Drag andDrop"}
description={
"Easily drag icons from Iconset to your design tool."
}
/>
<FeatureBlock
img={<BeakerIcon className="w-6" />}
heading={"2. Optimize SVGs"}
description={
"Use our SVG optimizer to make icons production-ready."
}
/>
<FeatureBlock
img={<CodeIcon className="w-6" />}
heading={"3. Customizable copy"}
description={
"Get the icon embed code for React, Vue, Svelte and Ember."
}
/>
</div>
<div className="md:flex">
<FeatureBlock
img={<ShareIcon className="w-6" />}
heading={"4. Sync with the team"}
description={
"Connect collections folder to Github, Drive... and be in sync."
}
/>
<FeatureBlock
img={<DesktopComputerIcon className="w-6" />}
heading={"5. Cross Platform"}
description={
"Icon Shelf works great on macOS, Windows and Linux computers."
}
/>
<FeatureBlock
img={<CurrencyDollarIcon className="w-6" />}
heading={"6. Free to use"}
description={"Icon Shelf is a free and open source tool."}
/>
</div>
</div>
</div>
</section>
);
};
export default FeaturesCardBlocks;