diff --git a/components/OurStoryTimeline.tsx b/components/OurStoryTimeline.tsx index 2c9a5c8..96fc7dc 100644 --- a/components/OurStoryTimeline.tsx +++ b/components/OurStoryTimeline.tsx @@ -15,7 +15,7 @@ export default function OppositeContentTimeline() {
  • - Awarded ARC On Campus Activity of the Year, for our - 'Plant Your Creativity' social event + Awarded ARC On Campus Activity of the Year, for our 'Plant + Your Creativity' social event
  • - Improved automation of internal systems, such as our website updates + Improved automation of internal systems, such as our website + updates
  • +
  • Had the largest subcommittee team in WIT's history
  • +
  • Continuation of our flagship initiatives
  • - Had the largest subcommittee team in WIT's history + Record breaking number of attendees at our Annual Networking + Night
  • - Continuation of our flagship initiatives + Focused on quality over quantity for events, hosting a total of + 18 in-person at a variety of venues, including sponsor offices, + university campus and private venues
  • - Record breaking number of attendees at our Annual Networking Night + Increased our Instagram base by 45%, achieving a near 1K + audience, our LinkedIn followers by 23% to 1664, and achieved a + milestone of over 3600 followers on Facebook
  • + + ) : year === '2024' ? ( + ) : ( )} diff --git a/data/story.ts b/data/story.ts index c6cb2d5..b935073 100644 --- a/data/story.ts +++ b/data/story.ts @@ -1,56 +1,26 @@ // position of the marks on the timeline (i.e. 250 indicates that it's on the right end) const marks = [ - { - value: 249.9, - scaledValue: 2023, - label: '2023', - }, - { - value: 214.2, - scaledValue: 2022, - label: '2022', - }, - { - value: 178.5, - scaledValue: 2021, - label: '2021', - }, - { - value: 142.8, - scaledValue: 2020, - label: '2020', - }, - { - value: 107.1, - scaledValue: 2019, - label: '2019', - }, - { - value: 71.4, - scaledValue: 2018, - label: '2018', - }, - { - value: 35.7, - scaledValue: 2017, - label: '2017', - }, - { - value: 0, - scaledValue: 2016, - label: '2016', - }, + { value: 249.9, scaledValue: 2024, label: '2024' }, + { value: 218.6625, scaledValue: 2023, label: '2023' }, + { value: 187.425, scaledValue: 2022, label: '2022' }, + { value: 156.1875, scaledValue: 2021, label: '2021' }, + { value: 124.95, scaledValue: 2020, label: '2020' }, + { value: 93.7125, scaledValue: 2019, label: '2019' }, + { value: 62.475, scaledValue: 2018, label: '2018' }, + { value: 31.2375, scaledValue: 2017, label: '2017' }, + { value: 0, scaledValue: 2016, label: '2016' }, ]; const valueToYear = { 0: '2016', - 35.7: '2017', - 71.4: '2018', - 107.1: '2019', - 142.8: '2020', - 178.5: '2021', - 214.2: '2022', - 249.9: '2023', + 31.2375: '2017', + 62.475: '2018', + 93.7125: '2019', + 124.95: '2020', + 156.1875: '2021', + 187.425: '2022', + 218.6625: '2023', + 249.9: '2024', }; let pageToValue = (page: string) => { @@ -68,6 +38,7 @@ const timelinePhoto = { 2021: '/our-story/timelinePhotos/2021.jpg', 2022: '/our-story/timelinePhotos/2022.jpg', 2023: '/our-story/timelinePhotos/2023.jpg', + 2024: '/our-story/timelinePhotos/2024.jpg', }; export { marks, valueToYear, pageToValue, timelinePhoto }; diff --git a/public/our-story/timelinePhotos/2024.jpg b/public/our-story/timelinePhotos/2024.jpg new file mode 100644 index 0000000..9123130 Binary files /dev/null and b/public/our-story/timelinePhotos/2024.jpg differ