Skip to content

Commit e338726

Browse files
committed
add : period of project
1 parent 5d5ab21 commit e338726

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

src/components/Modal.astro

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,11 @@ const { id, open, project } = Astro.props;
4242
))
4343
}
4444
</div>
45+
<p style="text-align: center;">
46+
{project.period.from} -
47+
{project.period.to !== project.period.from ? project.period.to : ""}
48+
</p>
49+
4550
<div class="content">
4651
<p>
4752
{project.content}
@@ -54,7 +59,6 @@ const { id, open, project } = Astro.props;
5459
))
5560
}
5661
</ul>
57-
<!-- <p>Last updated : {project.lastUpdated}</p> -->
5862
</div>
5963
</div>
6064
</div>

src/components/Projects.astro

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const projects = [
77
"An online compiler system with real-time data structure visualization",
88
content:
99
"Developing an online compiler system supporting multiple programming languages, enabling secure code execution with sandboxing. Integrating a real-time data structure visualizer to facilitate code understanding by illustrating changes in data structures such as arrays, linked lists, trees, and graphs.",
10-
lastUpdated: "2024-07-01",
10+
period: { from: "July 2024", to: "Present" },
1111
completed: false,
1212
links: [],
1313
technologies: ["React", "Node.js", "Express.js", "Docker", "CodeMirror"],
@@ -18,7 +18,7 @@ const projects = [
1818
description: "A simple portfolio website built using Astro framework.",
1919
content:
2020
"This webiste is built using Astro framework and deployed Github Pages. A simple static website built to showcase my projects, projects and my interests. ",
21-
lastUpdated: "2023-09-14",
21+
period: { from: "June 2024", to:"June 2024" },
2222
completed: true,
2323
links: [
2424
{
@@ -35,7 +35,7 @@ const projects = [
3535
description: "An automated Ambulance summoning device",
3636
content:
3737
"It is an ambulance summoning device for health emergencies. Health emergency detection using Pulse-oximeter sensor and a medical history record system. Built during Young Innovators program (K-DISC) '22 and Samsung Solve for Tomorrow '22. Used Arduino, Flutter, NodeMCU, Firebase API and sensors. It is a device that can be installed in a car and can be used to summon an ambulance in case of an emergency. It uses a heart rate sensor to detect the heart rate of the driver and if it detects a heart attack, it automatically sends a message to the nearest hospital and the ambulance is dispatched.",
38-
lastUpdated: "2023-02-14",
38+
period: { from: "September 2022", to: "December 2023" },
3939
completed: true,
4040
links: [],
4141
technologies: ["Arduino", "Flutter", "NodeMCU", "Firebase API", "Sensors"],
@@ -46,7 +46,7 @@ const projects = [
4646
description: "A portal for registering freshers for the college",
4747
content:
4848
"A portal for registering freshers for the college. Built using MERN stack. It is a portal for registering freshers for the college. It has a login system for the admin and the students. The admin can add, delete and update the students. The students can register themselves and download the registration and declaration forms as a PDF file after registration.",
49-
lastUpdated: "2023-08-13",
49+
period: { from: "August 2023", to: "August 2023" },
5050
completed: true,
5151
links: [{ title: "website", url: "http://register.mec.ac.in/" }],
5252
technologies: ["React", "NodeJS", "ExpressJS", "MongoDB", "Bootstrap"],
@@ -58,7 +58,7 @@ const projects = [
5858
"An application for tokenizing physical assets and trading them",
5959
content:
6060
"An application for tokenizing physical assets and trading them. It is an application for tokenizing physical assets and trading them. It has a login system for the admin and the users. The admin can add, delete and update the assets. The users can buy and sell the assets. The Government can view the assets and the transactions, helping them to keep track of the assets as well as detecting tax evasions.",
61-
lastUpdated: "2023-09-14",
61+
period: { from: "September 2023", to: "April 2024" },
6262
completed: true,
6363
links: [
6464
{
@@ -90,7 +90,7 @@ const projects = [
9090
"A fintech app that tracks your expenses and helps to plan your budget",
9191
content:
9292
"This comprehensive fintech app simplifies the path to financial success for people of all ages. It acknowledges the unique challenges faced by today's youth and provides a user-friendly platform for setting and achieving their financial requirements. Users can easily input their desired financial objectives, prioritise them, and share details about their monthly income or allowances. With this app, we empower individuals to take control of their financial future, just as older generations plan for their retirement built during 24 hour hackathon Mechack '23",
93-
lastUpdated: "2023-09-25",
93+
period: { from: "October 2023", to: "October 2023" },
9494
completed: true,
9595
links: [
9696
{

0 commit comments

Comments
 (0)