Skip to content

Commit

Permalink
update: timeline
Browse files Browse the repository at this point in the history
  • Loading branch information
debojitsaha committed Jan 27, 2024
1 parent 5160e30 commit e8e7c84
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 31 deletions.
55 changes: 32 additions & 23 deletions src/constants/timelineData.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,77 +2,86 @@ export const timelineData = [
{
id: 1,
bgIconColor: "#EA4335",
dateVal: "20th January, 2024",
dateVal: "24th December, 2023",
title: " First contact with Companies established",
description:
"Finishing off contact with organizations and communities involved.",
},
{
id: 2,
bgIconColor: "#FBBC05",
dateVal: "23th January, 2024",
dateVal: "1st January, 2024",
title: "Organisation Project registration starts",
description:
"Organisations will be able to register their project under WoC.",
},
{
id: 3,
bgIconColor: "#34A853",
dateVal: "12th February, 2024",
title:
"Finalizing Video promos, Proposals and Registrations for Organizations",
bgIconColor: "#4285F4",
dateVal: "27th January, 2024",
title: "Info Session and Pre-registration starts",
description:
"Video promos, proposals and registrations for Organizations will be finalized.",
"An info session will be held to introduce the students to the program and the pre-registration starts.",
},
{
id: 4,
bgIconColor: "#EA4335",
dateVal: "15th February, 2024",
title: "Organization Registration ends",
description: "Registration for projects under organisation ends.",
bgIconColor: "#34A853",
dateVal: "5th February, 2024",
title:
"Pre-registration ends",
description:
"Pre-registration for the students ends and the students will be able to register for the projects.",
},
{
id: 5,
id: 6,
bgIconColor: "#FBBC05",
dateVal: "17th February, 2024",
dateVal: "5th February, 2024",
title: "Proposal submissions Start",
description:
"Students will be able to submit their proposals for the projects.",
},
{
id: 6,
id: 7,
bgIconColor: "#4285F4",
dateVal: "27th February, 2024",
dateVal: "20th February, 2024",
title: "Proposal submissions end and Screening starts",
description:
"Proposal submissions will be closed and the screening process will start.",
},
{
id: 7,
id: 8,
bgIconColor: "#34A853",
dateVal: "3rd March, 2024",
dateVal: "1st March, 2024",
title: "Students Announced",
description: "Selected students will be announced to the projects.",
description: "Selected students will be mailed about the projects they are shortlisted in.",
},
{
id: 8,
id: 9,
bgIconColor: "#4285F4",
dateVal: "6th March, 2024",
dateVal: "3rd March, 2024",
title: "Student Contribution Starts",
description:
"Selected students will be starting to contribute to the assigned projects.",
},
{
id: 9,
id: 10,
bgIconColor: "#EA4335",
dateVal: "14th March, 2024",
title: "GitHub Offline Event",
description:
"A basic to advanced GitHub session will be held for the students.",
},
{
id: 11,
bgIconColor: "#FBBC05",
dateVal: "17th March, 2024",
title: "Project evaluation",
description:
"Review of the students contribution will be shared by the organisations.",
},
{
id: 10,
bgIconColor: "#FBBC05",
id: 12,
bgIconColor: "#EA4335",
dateVal: "28th March, 2024",
title: "Project submission",
description: "Students will be able to submit their projects.",
Expand Down
10 changes: 3 additions & 7 deletions src/pages/Organisation/Organisation.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,9 +114,7 @@ const Organisation = () => {
margin: "0",
}}
onClick={() =>
message.warning(
"Applications for this project has not started yet"
)
openInNewWindow("https://forms.gle/oemhBfWoGXdxtTNm8")
}
>
Apply now
Expand Down Expand Up @@ -196,11 +194,9 @@ const Organisation = () => {
</button>

<p
style={{ color: "#000000" }}
style={{ color: "#000000", cursor: "pointer" }}
onClick={() =>
message.warning(
"Applications for this project has not started yet"
)
openInNewWindow("https://forms.gle/oemhBfWoGXdxtTNm8")
}
>
Apply now
Expand Down
1 change: 1 addition & 0 deletions src/pages/Organisation/Organisation.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
flex-direction: column;
padding: 0rem 2rem;
margin-bottom: 50px;

h1 {
font-size: 2rem;
margin-bottom: 0.5rem;
Expand Down
2 changes: 1 addition & 1 deletion src/partials/Timeline/Timeline.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
// eslint-disable-next-line no-unused-vars
import React from "react";
import "./Timeline.scss";
import { StarFull } from "assets/timelineIcons";
Expand All @@ -9,6 +8,7 @@ import {
import "react-vertical-timeline-component/style.min.css";
import { timelineData } from "constants/timelineData";
import { AiFillCaretDown } from "react-icons/ai";

const Timeline = () => {
return (
<div id="timeline" className="timeline">
Expand Down

0 comments on commit e8e7c84

Please sign in to comment.