Skip to content

Commit

Permalink
Add new projects to ProjectsSection component
Browse files Browse the repository at this point in the history
  • Loading branch information
JosephDoUrden committed Feb 9, 2024
1 parent d3dc17f commit 97f02f4
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 0 deletions.
Binary file added public/images/projects/nike-website.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/projects/todo-riverpod.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/projects/twitter-clone.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 30 additions & 0 deletions src/app/components/ProjectsSection.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,36 @@ const projectsData = [
"https://github.com/JosephDoUrden/Product-Preview-Card-Component-Solution",
previewUrl: "https://product-card-ysfsck.netlify.app/",
},
{
id: 7,
title: "Todo App with Flutter and Riverpod",
description:
"A Flutter Todo app leveraging Riverpod for efficient state management. Organize tasks effortlessly with CRUD operations. Stay productive on the go!",
image: "/images/projects/todo-riverpod.png",
tag: ["All", "Mobile"],
gitUrl: "https://github.com/JosephDoUrden/flutter-todo-app-with-riverpod",
previewUrl: "#",
},
{
id: 8,
title: "Nike Shoe Store",
description:
"Explore Nike's innovative world through my concept website, blending Tailwind CSS, React, and Vite for a dynamic online experience.",
image: "/images/projects/nike-website.png",
tag: ["All", "Web"],
gitUrl: "https://github.com/JosephDoUrden/nike-website",
previewUrl: "https://nike-website-josephdourden.netlify.app/",
},
{
id: 9,
title: "Twitter Clone",
description:
"This project is a Twitter clone built with Next.js, a popular React framework. It allows users to create, read, and interact with tweets, just like the real Twitter. Here's a brief guide to get you started with this project.",
image: "/images/projects/twitter-clone.png",
tag: ["All", "Web"],
gitUrl: "https://github.com/JosephDoUrden/twitter-clone",
previewUrl: "https://twitter-clone-lilac-rho.vercel.app/",
},
];

const ProjectsSection = () => {
Expand Down

0 comments on commit 97f02f4

Please sign in to comment.