forked from soumyajit4419/Portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e56cf5f
commit 3944e1a
Showing
23 changed files
with
190 additions
and
125 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,9 +31,6 @@ | |
<meta name="twitter:description" content="Self Developed personal website build with React.js"> | ||
<meta name="twitter:image" | ||
content="https://raw.githubusercontent.com/soumyajit4419/Portfolio/master/Images/readme-img.png?token=AK7VCIF5RYEUZZAURELPTAC76U6AK"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/devicons/devicon@master/devicon.min.css"> | ||
<link rel="stylesheet" href="https://unpkg.com/@coreui/[email protected]/css/all.min.css"> | ||
</head> | ||
|
||
<body> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import React from "react"; | ||
import { Col, Row } from "react-bootstrap"; | ||
import { | ||
SiLinux, | ||
SiVisualstudiocode, | ||
SiJupyter, | ||
SiPostman, | ||
SiHeroku, | ||
} from "react-icons/si"; | ||
|
||
function Toolstack() { | ||
return ( | ||
<Row style={{ justifyContent: "center", paddingBottom: "50px" }}> | ||
<Col xs={4} md={2} className="tech-icons"> | ||
<SiLinux /> | ||
</Col> | ||
<Col xs={4} md={2} className="tech-icons"> | ||
<SiVisualstudiocode /> | ||
</Col> | ||
<Col xs={4} md={2} className="tech-icons"> | ||
<SiJupyter /> | ||
</Col> | ||
<Col xs={4} md={2} className="tech-icons"> | ||
<SiPostman /> | ||
</Col> | ||
<Col xs={4} md={2} className="tech-icons"> | ||
<SiHeroku /> | ||
</Col> | ||
</Row> | ||
); | ||
} | ||
|
||
export default Toolstack; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.