mshanker's picture
Upload 47 files
f07bf73
raw
history blame contribute delete
748 Bytes
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;