Skip to content

Commit

Permalink
Changes in project section
Browse files Browse the repository at this point in the history
  • Loading branch information
devaggarwal-1 committed Jan 21, 2024
1 parent cf6ba7a commit fae855c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/Projects.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ import ProjectCard from './ProjectCard';
function Projects() {

const [projectsArray, setProjectsArray] = useState([]);
const repoNames = ['RecipeWebsite', 'Portfolio_website', 'StockTracker']
const repoNames = ['RecipeWebsite', 'Portfolio_website', 'StockTracker', 'Chip-8-Emulator']
const repoDesc = [
'A Recipe Website where you can search for recipes and add them to your favourite list.Frontend using React and backend using express.js with PostgreSQL for database. Coded using Typescript.',
'This is my portfolio website. Made using HTML, CSS, React and animations using framer-motion.',
'StockTracker is a full-stack web application that allows users to search and track stocks efficiently. The platform is built using React for the front end, Node.js and Express.js for the backend, and MongoDB as the database.'
'StockTracker is a full-stack web application that allows users to search and track stocks efficiently. The platform is built using React for the front end, Node.js and Express.js for the backend, and MongoDB as the database.',
'This project is a Chip-8 emulator written in Javascript.This emulator aims to recreate the functionality of the Chip-8 system, allowing users to run and play classic Chip-8 games on modern hardware.'
]

const API = "https://api.github.com";
Expand Down

0 comments on commit fae855c

Please sign in to comment.