Skip to content

Commit

Permalink
feat: add NotiFly new project to the project card
Browse files Browse the repository at this point in the history
  • Loading branch information
sutarrohit committed Feb 11, 2024
1 parent 039be22 commit 01b878c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions src/app/Components/Projects/Projects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import Image from "next/image";
import { BiLogoGithub } from "react-icons/bi";
import { CgWebsite } from "react-icons/cg";
import project1 from "../../img/project-1.jpg";
import NotiFly from "../../img/notifly.png";
import GoCourse from "../../img/GoCourse.png";
import movieInfo from "../../img/movieInfo.png";
import DevProfile from "../../img/DevProfile.png";
Expand All @@ -15,11 +16,19 @@ const Projects = () => {
const { ref: projectRef, inView: projectVisible } = useInView();

const projectData = [
{
image: NotiFly,
projectName: "NotiFly",
description:
"Notifly is a crypto notification platform designed to deliver real-time cryptocurrency price notifications.",
github: "https://github.com/sutarrohit/NotiFly",
website: "https://noti-fly-web.vercel.app/",
},
{
image: GoCourse,
projectName: "Go Course",
description:
"GoCourse is a modern and feature-rich online platform designed for selling and purchasing courses.User have multiple courses to buy",
"GoCourse is a modern and feature-rich online platform designed for selling and purchasing courses.User have multiple courses to buy.",
github: "https://github.com/sutarrohit/GoCourse_Frontend",
website: "https://go-course-frontend.vercel.app/",
},
Expand All @@ -35,7 +44,7 @@ const Projects = () => {
image: nftMarketplace,
projectName: "NFT Marketplace",
description:
"NFT Marketplace allows users to create, buy, list and sell non-fungible tokens (NFTs) on the Ethereum and EVM compatible blockchains",
"NFT Marketplace allows users to create, buy, list and sell non-fungible tokens (NFTs) on the Ethereum and EVM compatible blockchains.",
github: "https://github.com/sutarrohit/Full-Stack-NFTMarketplace",
website: "https://full-stack-nft-marketplace-rtlx.vercel.app/",
},
Expand Down Expand Up @@ -86,17 +95,9 @@ const Projects = () => {
}`}
key={key}
>
<Image
src={element.image}
alt="card"
width={350}
height={350}
className="h-[10rem]"
/>
<Image src={element.image} alt="card" width={350} height={350} className="h-[10rem]" />
<a href={element.website} target="_blank">
<h4 className="font-bold my-2 hover:text-firstColor ">
{element.projectName}
</h4>
<h4 className="font-bold my-2 hover:text-firstColor ">{element.projectName}</h4>
</a>

<p>{element.description}</p>
Expand Down
Binary file added src/app/img/notifly.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 01b878c

Please sign in to comment.