From 0e7cdecf98a1360110932cce13eeed653f9f3db4 Mon Sep 17 00:00:00 2001 From: Jimmy McArthur Date: Thu, 1 Feb 2024 13:07:18 -0600 Subject: [PATCH] Adding new registration line for Special Edittion - Switzerland and Turkey --- src/components/SpecialEditionSection/index.jsx | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/src/components/SpecialEditionSection/index.jsx b/src/components/SpecialEditionSection/index.jsx index fdd89eb18..b84731364 100644 --- a/src/components/SpecialEditionSection/index.jsx +++ b/src/components/SpecialEditionSection/index.jsx @@ -6,7 +6,10 @@ import LinkComponent from '../LinkComponent'; const DAYS = [ - { title: "OpenInfra Day Sweden", date: "May 7, 2024", location: `Volvohallen, Gothenburg, Sweden` }, + { title: "OpenInfra Day Sweden", + date: "May 7, 2024", + location: 'Volvohallen, Gothenburg, Sweden' + }, { title: "OpenInfra Day Germany x Sovereign Cloud Stack Summit", date: "May 14 & 15, 2024", @@ -16,6 +19,7 @@ const DAYS = [ title: "OpenInfra Day Turkiye", date: "May 20, 2024", location: 'Albert Long Hall Cultural Center, Boğaziçi University, Istanbul, Turkiye' + registration: 'Register Now' }, { title: "OpenInfra Day France", date: "May 2024" @@ -26,7 +30,8 @@ const DAYS = [ { title: "OpenInfra Meetup: Switzerland", date: "June 6, 2024", - location: `CERN, Geneva, Switzerland` + location: 'CERN, Geneva, Switzerland' + registration: 'Register Now' }, ]; @@ -74,6 +79,12 @@ const SpecialEditionSection = () => {

} + {day.location && +

+ registration + +

+ } {(!day.date || !day.location) &&

soon