Skip to content

Commit

Permalink
Merge pull request soumyajit4419#60 from Hiten1708/master
Browse files Browse the repository at this point in the history
Added new button and fixed an error related to package
  • Loading branch information
soumyajit4419 authored Jun 24, 2022
2 parents c7dd638 + c4e83de commit c69951b
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 18 deletions.
19 changes: 12 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"react-dom": "^17.0.2",
"react-github-calendar": "^3.2.2",
"react-icons": "^4.3.1",
"react-parallax-tilt": "^1.6.5",
"react-parallax-tilt": "^1.7.42",
"react-pdf": "^5.7.1",
"react-router-dom": "^6.2.2",
"react-scripts": "5.0.0",
Expand Down
20 changes: 16 additions & 4 deletions src/components/Projects/ProjectCards.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,22 @@ function ProjectCards(props) {
<Card.Text style={{ textAlign: "justify" }}>
{props.description}
</Card.Text>
<Button variant="primary" href={props.link} target="_blank">
<BiLinkExternal /> &nbsp;
{props.isBlog ? "View Blog" : "View Project"}
</Button>
<Button variant="primary" href={props.ghLink} target="_blank">
<BiLinkExternal /> &nbsp;
{props.isBlog ? "View Blog" : "View GitHub"}
</Button>
{'\n'}
{'\n'}

{/* If the component contains Demo link and if it's not a Blog then, it will render the below component */}

{!props.isBlog && props.demoLink &&
<Button variant="primary" href={props.demoLink} target="_blank">
<BiLinkExternal /> &nbsp;
{"View Demo"}
</Button>
}

</Card.Body>
</Card>
);
Expand Down
18 changes: 12 additions & 6 deletions src/components/Projects/Projects.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ function Projects() {
isBlog={false}
title="Chatify"
description="Personal Chat Room or Workspace to share resources and hangout with friends build with react.js, Material-UI, and Firebase. Have features which allows user for realtime messaging, image sharing as well as supports reactions on messages."
link="https://github.com/soumyajit4419/Chatify"
ghLink="https://github.com/soumyajit4419/Chatify"
demoLink="https://chatify-49.web.app/"
/>
</Col>

Expand All @@ -37,7 +38,8 @@ function Projects() {
isBlog={false}
title="Bits-0f-C0de"
description="My personal blog page build with Next.js and Tailwind Css which takes the content from makdown files and renders it using Next.js. Supports dark mode and easy to write blogs using markdown."
link="https://github.com/soumyajit4419/Bits-0f-C0de"
ghLink="https://github.com/soumyajit4419/Bits-0f-C0de"
demoLink="https://blogs.soumya-jit.tech/"
/>
</Col>

Expand All @@ -47,7 +49,8 @@ function Projects() {
isBlog={false}
title="Editor.io"
description="Online code and markdown editor build with react.js. Online Editor which supports html, css, and js code with instant view of website. Online markdown editor for building README file which supports GFM, Custom Html tags with toolbar and instant preview.Both the editor supports auto save of work using Local Storage"
link="https://github.com/soumyajit4419/Editor.io"
ghLink="https://github.com/soumyajit4419/Editor.io"
demoLink="https://editor.soumya-jit.tech/"
/>
</Col>

Expand All @@ -57,7 +60,8 @@ function Projects() {
isBlog={false}
title="Plant AI"
description="Used the plant disease dataset from Kaggle and trained a image classifer model using 'PyTorch' framework using CNN and Transfer Learning with 38 classes of various plant leaves. The model was successfully able to detect diseased and healthy leaves of 14 unique plants. I was able to achieve an accuracy of 98% by using Resnet34 pretrained model."
link="https://github.com/soumyajit4419/Plant_AI"
ghLink="https://github.com/soumyajit4419/Plant_AI"
demoLink="https://plant49-ai.herokuapp.com/"
/>
</Col>

Expand All @@ -67,7 +71,8 @@ function Projects() {
isBlog={false}
title="Ai For Social Good"
description="Using 'Natural Launguage Processing' for the detection of suicide-related posts and user's suicide ideation in cyberspace and thus helping in sucide prevention."
link="https://github.com/soumyajit4419/AI_For_Social_Good"
ghLink="https://github.com/soumyajit4419/AI_For_Social_Good"
// demoLink="https://www.youtube.com/watch?v=dQw4w9WgXcQ&ab_channel=RickAstley" <--------Please include a demo link here
/>
</Col>

Expand All @@ -78,7 +83,8 @@ function Projects() {
title="Face Recognition and Emotion Detection"
description="Trained a CNN classifier using 'FER-2013 dataset' with Keras and tensorflow backened. The classifier sucessfully predicted the various types of emotions of human. And the highest accuracy obtained with the model was 60.1%.
Then used Open-CV to detect the face in an image and then pass the face to the classifer to predict the emotion of a person."
link="https://github.com/soumyajit4419/Face_And_Emotion_Detection"
ghLink="https://github.com/soumyajit4419/Face_And_Emotion_Detection"
// demoLink="https://blogs.soumya-jit.tech/" <--------Please include a demo link here
/>
</Col>
</Row>
Expand Down

0 comments on commit c69951b

Please sign in to comment.