File size: 748 Bytes
f07bf73 |
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 |
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;
|