Skip to content

Commit 6d9aa8d

Browse files
improvement: about-page project timeline section (#2408)
* improvement: about-page project timeline section * Update timeline data --------- Co-authored-by: Arkadii Yakovets <[email protected]> Co-authored-by: Arkadii Yakovets <[email protected]>
1 parent 18f6d70 commit 6d9aa8d

File tree

2 files changed

+22
-12
lines changed

2 files changed

+22
-12
lines changed

frontend/src/app/about/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -275,13 +275,13 @@ const About = () => {
275275
{[...projectTimeline].reverse().map((milestone, index) => (
276276
<div key={`${milestone.year}-${milestone.title}`} className="relative pl-10">
277277
{index !== projectTimeline.length - 1 && (
278-
<div className="absolute top-6 left-[7px] h-full w-0.5 bg-blue-400"></div>
278+
<div className="absolute top-5 left-[5px] h-full w-0.5 bg-gray-400"></div>
279279
)}
280280
<div
281281
aria-hidden="true"
282-
className="absolute top-2 left-0 h-4 w-4 rounded-full bg-blue-400"
282+
className="absolute top-[10px] left-0 h-3 w-3 rounded-full bg-gray-400"
283283
></div>
284-
<div className="pt-1">
284+
<div>
285285
<h3 className="text-lg font-semibold text-blue-400">{milestone.title}</h3>
286286
<h4 className="mb-1 font-medium text-gray-400">{milestone.year}</h4>
287287
<p className="text-gray-600 dark:text-gray-300">{milestone.description}</p>

frontend/src/utils/aboutData.ts

Lines changed: 19 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -63,45 +63,43 @@ export const projectTimeline: ProjectTimeline[] = [
6363
title: 'Project Inception',
6464
description:
6565
'Initial brainstorming and vision by Arkadii Yakovets & Starr Brown to solve OWASP project navigation challenges.',
66-
year: 'Aug 2024',
66+
year: 'August 2024',
6767
},
6868
{
6969
title: 'Backend Minimum Viable Product',
7070
description:
7171
'Backend foundations built by Arkadii Yakovets using Django and Docker. GitHub sync implemented for automated data updates.',
72-
year: 'Aug 2024',
72+
year: 'August 2024',
7373
},
7474
{
7575
title: 'NestBot for Slack Community Integration',
7676
description:
7777
'A key feature allowing users to browse and search all OWASP projects effectively.',
78-
year: 'Sep 2024',
78+
year: 'September 2024',
7979
},
8080
{
8181
title: 'Initial Frontend Development',
8282
description: 'Frontend initially developed by Kate Golovanova using Vue.js and Bootstrap.',
83-
year: 'Sep 2024',
83+
year: 'September 2024',
8484
},
8585
{
8686
title: 'New React-based Frontend',
8787
description:
8888
'Started transitioning the frontend from Vue.js to React for better performance and scalability.',
89-
year: 'Nov 2024',
89+
year: 'November 2024',
9090
},
9191
{
9292
title: 'NestBot Commands and Event Handlers Expansion',
9393
description:
9494
'Enhanced NestBot with advanced command processing and intelligent event handlers to improve user interaction efficiency.',
95-
year: 'Jan 2025',
95+
year: 'January 2025',
9696
},
97-
9897
{
9998
title: 'First Official Release and Production Launch',
10099
description:
101100
'We officially launched OWASP Nest to the public, inviting the community to explore and contribute.',
102-
year: 'Feb 2025',
101+
year: 'February 2025',
103102
},
104-
105103
{
106104
title: 'GSoC 2025 Participation',
107105
description: 'OWASP Nest accepted for Google Summer of Code 2025 as part of OWASP.',
@@ -113,6 +111,18 @@ export const projectTimeline: ProjectTimeline[] = [
113111
'We started sponsoring some interesting projects that have not made it to the GSoC 2025.',
114112
year: 'June 2025',
115113
},
114+
{
115+
title: 'OWASP Nest Sponsorship Program Expansion',
116+
description:
117+
'OWASP Nest expanded its Sponsorship Program to support ongoing project maintenance and new initiatives.',
118+
year: 'October 2025',
119+
},
120+
{
121+
title: 'Lab Level Promotion',
122+
description:
123+
"OWASP Nest promoted to Lab level, marking a significant milestone in the project's growth and maturity within the OWASP ecosystem",
124+
year: 'October 2025',
125+
},
116126
]
117127

118128
export const technologies = [

0 commit comments

Comments
 (0)