-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathToolstack.js
More file actions
33 lines (31 loc) · 748 Bytes
/
Copy pathToolstack.js
File metadata and controls
33 lines (31 loc) · 748 Bytes
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 React from "react";
import { Col, Row } from "react-bootstrap";
import {
SiVisualstudiocode,
SiPostman,
SiSlack,
SiVercel,
SiMacos,
} from "react-icons/si";
function Toolstack() {
return (
<Row style={{ justifyContent: "center", paddingBottom: "50px" }}>
<Col xs={4} md={2} className="tech-icons">
<SiMacos />
</Col>
<Col xs={4} md={2} className="tech-icons">
<SiVisualstudiocode />
</Col>
<Col xs={4} md={2} className="tech-icons">
<SiPostman />
</Col>
<Col xs={4} md={2} className="tech-icons">
<SiSlack />
</Col>
<Col xs={4} md={2} className="tech-icons">
<SiVercel />
</Col>
</Row>
);
}
export default Toolstack;