Skip to content

Commit 4128f7e

Browse files
committed
added the relevent json for project and changed image to iframe
1 parent 1f54a3d commit 4128f7e

File tree

7 files changed

+17
-25
lines changed

7 files changed

+17
-25
lines changed

app/_components/Intro.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ function Intro() {
3939
live: string;
4040
image: string;
4141
tools: string[];
42+
timeline: string;
4243
}
4344

4445
interface Education {

app/_components/Project.tsx

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import Image from "next/image";
22
import React from "react";
33

4-
import engineer from "../assets/engineer.jpg";
4+
// import engineer from "../assets/engineer.jpg";
55

66
function Project({
77
title,
@@ -18,13 +18,8 @@ function Project({
1818
}) {
1919
return (
2020
<div className="border-b-2 border-gray-500 min-w-64 overflow-hidden ">
21-
<div className="flex h-64 justify-center items-center">
22-
<Image
23-
draggable={true}
24-
className="w-full h-full object-cover"
25-
src={engineer}
26-
alt="image"
27-
></Image>
21+
<div className="flex h-80 justify-center items-center">
22+
<iframe className="w-full h-full" src={live}></iframe>
2823
</div>
2924

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

app/assets/fontverse.png

138 KB
Loading

app/assets/nimbustweet.png

269 KB
Loading

app/assets/quickheal.png

131 KB
Loading

app/assets/tictactoe.png

21 KB
Loading

app/config/Data.json

Lines changed: 13 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -10,39 +10,35 @@
1010
"github": "https://github.com/joefelx/quickheal",
1111
"live": "https://quickheal.vercel.app",
1212
"image": "https://your-image-url.com/quickheal.png",
13-
"tools": ["React", "Node.js", "MongoDB", "Websockets", "Express"]
13+
"tools": ["React", "Node.js", "MongoDB", "Websockets", "Express"],
14+
"timeline": "Jan 2024 - Present"
1415
},
1516
{
1617
"title": "Nimbus Tweet",
1718
"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.",
1819
"github": "https://github.com/joefelx/nimbus-tweet",
1920
"live": "https://nimbus-tweet.vercel.app",
2021
"image": "https://your-image-url.com/nimbus-tweet.png",
21-
"tools": ["React", "Node.js", "MongoDB", "Redis", "Next.js"]
22+
"tools": ["React", "Node.js", "MongoDB", "Redis", "Next.js"],
23+
"timeline": "Nov 2023 - Feb 2024"
2224
},
2325
{
2426
"title": "Font Verse",
2527
"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.",
2628
"github": "https://github.com/joefelx/fontverse",
2729
"live": "https://fontverse.vercel.app",
2830
"image": "https://your-image-url.com/fontverse.png",
29-
"tools": ["React", "Node.js", "MongoDB", "Redis"]
31+
"tools": ["React", "Node.js", "MongoDB", "Redis"],
32+
"timeline": "Aug 2023 - Dec 2023"
3033
},
3134
{
32-
"title": "Banking Website",
33-
"description": "A banking web application prototype that includes user authentication, secure money transactions, and an intuitive UI for easy financial management.",
34-
"github": "https://github.com/joefelx/banking-website",
35-
"live": "https://banking-website.vercel.app",
36-
"image": "https://your-image-url.com/banking-website.png",
37-
"tools": ["React", "Node.js", "MongoDB", "Express", "JWT"]
38-
},
39-
{
40-
"title": "Instagram Clone",
41-
"description": "A feature-rich social media platform that replicates the core functionalities of Instagram, including authentication, posts, likes, and comments.",
42-
"github": "https://github.com/joefelx/instagram-clone",
43-
"live": "https://instagram-clone.vercel.app",
44-
"image": "https://your-image-url.com/instagram-clone.png",
45-
"tools": ["React", "Node.js", "MongoDB", "Redux"]
35+
"title": "Tic-Tac-Toe Online",
36+
"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.",
37+
"github": "https://github.com/joefelx/tictactoe-online",
38+
"live": "https://tictactoe-online-joefelx.vercel.app/",
39+
"image": "https://your-image-url.com/tictactoe-online.png",
40+
"tools": ["React", "Node.js", "WebSockets"],
41+
"timeline": "Oct 2023 - Nov 2023"
4642
}
4743
],
4844
"skills": [

0 commit comments

Comments
 (0)