Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

project list automate #165

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
88 changes: 15 additions & 73 deletions src/components/Projects/Projects.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,91 +2,33 @@ import React from "react";
import { Container, Row, Col } from "react-bootstrap";
import ProjectCard from "./ProjectCards";
import Particle from "../Particle";
import leaf from "../../Assets/Projects/leaf.png";
import emotion from "../../Assets/Projects/emotion.png";
import editor from "../../Assets/Projects/codeEditor.png";
import chatify from "../../Assets/Projects/chatify.png";
import suicide from "../../Assets/Projects/suicide.png";
import bitsOfCode from "../../Assets/Projects/blog.png";
import { projectList } from "./dataProject";

function Projects() {
return (
<Container fluid className="project-section">
<Particle />
<Container>
<h1 className="project-heading">
My Recent <strong className="purple">Works </strong>
My Recent <strong className="purple">Works</strong>
</h1>
<p style={{ color: "white" }}>
Here are a few projects I've worked on recently.
</p>
<Row style={{ justifyContent: "center", paddingBottom: "10px" }}>
<Col md={4} className="project-card">
<ProjectCard
imgPath={chatify}
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."
ghLink="https://github.com/soumyajit4419/Chatify"
demoLink="https://chatify-49.web.app/"
/>
</Col>

<Col md={4} className="project-card">
<ProjectCard
imgPath={bitsOfCode}
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."
ghLink="https://github.com/soumyajit4419/Bits-0f-C0de"
demoLink="https://blogs.soumya-jit.tech/"
/>
</Col>

<Col md={4} className="project-card">
<ProjectCard
imgPath={editor}
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"
ghLink="https://github.com/soumyajit4419/Editor.io"
demoLink="https://editor.soumya-jit.tech/"
/>
</Col>

<Col md={4} className="project-card">
<ProjectCard
imgPath={leaf}
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."
ghLink="https://github.com/soumyajit4419/Plant_AI"
demoLink="https://plant49-ai.herokuapp.com/"
/>
</Col>

<Col md={4} className="project-card">
<ProjectCard
imgPath={suicide}
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."
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>

<Col md={4} className="project-card">
<ProjectCard
imgPath={emotion}
isBlog={false}
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."
ghLink="https://github.com/soumyajit4419/Face_And_Emotion_Detection"
// demoLink="https://blogs.soumya-jit.tech/" <--------Please include a demo link here
/>
</Col>
{
projectList?.map(item =>
<Col md={4} className="project-card">
<ProjectCard
imgPath={item.imgPath}
isBlog={item.isBlog}
title={item.title}
description={item.description}
demoLink={item.demoLink}
/>
</Col>
)
}
</Row>
</Container>
</Container>
Expand Down
51 changes: 51 additions & 0 deletions src/components/Projects/dataProject.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
export const projectList = [
{
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.',
ghLink : 'https://github.com/soumyajit4419/Chatify',
demoLink : 'https://chatify-49.web.app/',
isBlog : false,
imgPath : require('../../Assets/Projects/chatify.png')
},
{
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.',
ghLink : 'https://github.com/soumyajit4419/Bits-0f-C0de',
demoLink : 'https://blogs.soumya-jit.tech/',
isBlog : false,
imgPath : require('../../Assets/Projects/blog.png')
},
{
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',
ghLink : 'https://github.com/soumyajit4419/Editor.io',
demoLink : 'https://editor.soumya-jit.tech/',
isBlog : false,
imgPath : require('../../Assets/Projects/codeEditor.png')
},
{
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.",
ghLink : 'https://github.com/soumyajit4419/Plant_AI',
demoLink : 'https://plant49-ai.herokuapp.com/',
isBlog : false,
imgPath : require('../../Assets/Projects/leaf.png')
},
{
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.",
ghLink : 'https://github.com/soumyajit4419/AI_For_Social_Good',
demoLink : '-',
isBlog : false,
imgPath : require('../../Assets/Projects/suicide.png')
},
{
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.",
ghLink : 'https://github.com/soumyajit4419/Face_And_Emotion_Detection',
demoLink : '-',
isBlog : false,
imgPath : require('../../Assets/Projects/emotion.png')
},

]