Skip to content

Commit cd6e2f0

Browse files
committed
image path updated
1 parent 4128f7e commit cd6e2f0

File tree

8 files changed

+14
-198
lines changed

8 files changed

+14
-198
lines changed

app/_components/Intro.tsx

-192
This file was deleted.

app/_components/Project.tsx

+10-2
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,25 @@ function Project({
99
github,
1010
live,
1111
tools,
12+
image,
1213
}: {
1314
title: string;
1415
description: string;
1516
github: string;
1617
live: string;
1718
tools: Array<string>;
19+
image: string;
1820
}) {
1921
return (
2022
<div className="border-b-2 border-gray-500 min-w-64 overflow-hidden ">
21-
<div className="flex h-80 justify-center items-center">
22-
<iframe className="w-full h-full" src={live}></iframe>
23+
<div className="flex h-80 justify-center items-center relative object-contain">
24+
{/* <iframe className="w-full h-full" src={live}></iframe> */}
25+
<Image
26+
src={image}
27+
fill
28+
className="w-full h-full object-cover"
29+
alt="placeholder"
30+
/>
2331
</div>
2432

2533
{/* Title, Description and Tools */}

app/config/Data.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"description": "QuickHeal is a comprehensive healthcare web application designed to facilitate seamless communication and interaction between patients and doctors. The platform simplifies access to healthcare services and medical consultations.",
1010
"github": "https://github.com/joefelx/quickheal",
1111
"live": "https://quickheal.vercel.app",
12-
"image": "https://your-image-url.com/quickheal.png",
12+
"image": "/assets/quickheal.png",
1313
"tools": ["React", "Node.js", "MongoDB", "Websockets", "Express"],
1414
"timeline": "Jan 2024 - Present"
1515
},
@@ -18,7 +18,7 @@
1818
"description": "A Twitter thread generator that converts long paragraphs into multiple concise tweets while adhering to Twitter’s character limit. This project improves user experience by making content creation easier.",
1919
"github": "https://github.com/joefelx/nimbus-tweet",
2020
"live": "https://nimbus-tweet.vercel.app",
21-
"image": "https://your-image-url.com/nimbus-tweet.png",
21+
"image": "/assets/nimbustweet.png",
2222
"tools": ["React", "Node.js", "MongoDB", "Redis", "Next.js"],
2323
"timeline": "Nov 2023 - Feb 2024"
2424
},
@@ -27,7 +27,7 @@
2727
"description": "FontVerse is a font library that enables users to browse, select, and use various fonts efficiently. It enhances performance with Redis caching and improves font rendering for a seamless experience.",
2828
"github": "https://github.com/joefelx/fontverse",
2929
"live": "https://fontverse.vercel.app",
30-
"image": "https://your-image-url.com/fontverse.png",
30+
"image": "/assets/fontverse.png",
3131
"tools": ["React", "Node.js", "MongoDB", "Redis"],
3232
"timeline": "Aug 2023 - Dec 2023"
3333
},
@@ -36,7 +36,7 @@
3636
"description": "Tic-Tac-Toe Online is a multiplayer version of the classic Tic-Tac-Toe game, designed to be played over the internet. This project allows users to compete with each other in real-time by connecting to a server that manages the gameplay. The game features a sleek UI, smooth interactions, and real-time updates to enhance the player experience.",
3737
"github": "https://github.com/joefelx/tictactoe-online",
3838
"live": "https://tictactoe-online-joefelx.vercel.app/",
39-
"image": "https://your-image-url.com/tictactoe-online.png",
39+
"image": "/assets/tictactoe.png",
4040
"tools": ["React", "Node.js", "WebSockets"],
4141
"timeline": "Oct 2023 - Nov 2023"
4242
}

public/assets/engineer.jpg

29.3 KB
Loading
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)