diff --git a/src/constants/timelineData.js b/src/constants/timelineData.js index f332755..804e320 100644 --- a/src/constants/timelineData.js +++ b/src/constants/timelineData.js @@ -2,7 +2,7 @@ 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.", @@ -10,69 +10,78 @@ export const timelineData = [ { 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.", diff --git a/src/pages/Organisation/Organisation.jsx b/src/pages/Organisation/Organisation.jsx index 57c0d47..a28e067 100644 --- a/src/pages/Organisation/Organisation.jsx +++ b/src/pages/Organisation/Organisation.jsx @@ -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 @@ -196,11 +194,9 @@ const Organisation = () => {

- message.warning( - "Applications for this project has not started yet" - ) + openInNewWindow("https://forms.gle/oemhBfWoGXdxtTNm8") } > Apply now diff --git a/src/pages/Organisation/Organisation.scss b/src/pages/Organisation/Organisation.scss index ec44d8c..6abb165 100644 --- a/src/pages/Organisation/Organisation.scss +++ b/src/pages/Organisation/Organisation.scss @@ -4,6 +4,7 @@ flex-direction: column; padding: 0rem 2rem; margin-bottom: 50px; + h1 { font-size: 2rem; margin-bottom: 0.5rem; diff --git a/src/partials/Timeline/Timeline.jsx b/src/partials/Timeline/Timeline.jsx index aa1fb5b..c92b4cf 100644 --- a/src/partials/Timeline/Timeline.jsx +++ b/src/partials/Timeline/Timeline.jsx @@ -1,4 +1,3 @@ -// eslint-disable-next-line no-unused-vars import React from "react"; import "./Timeline.scss"; import { StarFull } from "assets/timelineIcons"; @@ -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 (