Skip to content

Commit 13ab417

Browse files
committed
feb2022 final commit
1 parent 3645f2d commit 13ab417

File tree

2 files changed

+9
-38
lines changed

2 files changed

+9
-38
lines changed

src/components/modules/Scene.tsx

+5-33
Original file line numberDiff line numberDiff line change
@@ -45,48 +45,20 @@ const Scene = () => {
4545
<div className="SceneOverlay-slogan">
4646
The biggest <span className="font__caesar">Nordic</span> Flutter Conference!
4747
<br />
48-
<p className="SceneOverlay-date">
49-
31<sup>st</sup> Aug - 1<sup>st</sup> Sep, 2022
50-
</p>
51-
<p className="SceneOverlay-location">2 Days - 3 Tracks</p>
52-
<p className="SceneOverlay-location">Oslo, Norway & Online</p>
53-
<div
54-
className="CTA-actions"
55-
style={{ display: 'flex', justifyContent: 'center' }}
56-
>
57-
<a
58-
className="Btn Btn--ticket Btn--cta"
59-
target="_blank"
60-
rel="noopener noreferrer"
61-
href={config.ticketUrl}
62-
>
63-
Tickets
64-
</a>
65-
<ScrollIntoView selector="#important">
66-
<button className="Btn Btn--cfp Btn--cta">Read More</button>
67-
</ScrollIntoView>
68-
</div>
48+
<p className="SceneOverlay-date">2-3 Feb, 2022</p>
49+
<p className="SceneOverlay-location">Online</p>
6950
</div>
70-
{/* <div className="SceneOverlay-info">
51+
<div className="SceneOverlay-info">
7152
<p className="SceneOverlay-location">
7253
<a
7354
className="Btn Btn--cfp Btn--cta"
7455
target="_blank"
7556
rel="noopener noreferrer"
76-
href="https://www.youtube.com/playlist?list=PL4dBIh1xps-EXi7ZuOVRAg2MFDvjxQpR3"
57+
href="https://www.youtube.com/playlist?list=PL4dBIh1xps-Emd7K4xwX4rdUnfaKFMuna"
7758
>
7859
Youtube
7960
</a>{' '}
8061
or{' '}
81-
<a
82-
className="Btn Btn--cfp Btn--cta"
83-
target="_blank"
84-
rel="noopener noreferrer"
85-
href="https://www.twitch.tv/FlutterCommunity"
86-
>
87-
Twitch
88-
</a>{' '}
89-
or{' '}
9062
<a
9163
className="Btn Btn--cfp Btn--cta"
9264
target="_blank"
@@ -96,7 +68,7 @@ const Scene = () => {
9668
Twitter
9769
</a>
9870
</p>
99-
</div> */}
71+
</div>
10072
</div>
10173
</section>
10274
);

src/components/modules/Schedules.tsx

+4-5
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ const Schedules = () => {
292292
<TimezoneSelect value={selectedTimezone} onChange={setSelectedTimezone} />
293293
</Notice>
294294
<div className="Agenda-twoColumnContainer">
295-
{/* {agenda.map((agendaDay, i) => (
295+
{agenda.map((agendaDay, i) => (
296296
<AgendaTabButton
297297
selected={i === selectedTab}
298298
className="Agenda-columnTitle"
@@ -303,13 +303,12 @@ const Schedules = () => {
303303
<p className="Agenda-date">{agendaDay.date}</p>
304304
{i === selectedTab && <CheckMark />}
305305
</AgendaTabButton>
306-
))} */}
306+
))}
307307
</div>
308308
<br />
309309
<br />
310310
<div className="Agenda-twoColumnContainer">
311-
TBA
312-
{/* {agenda.map(
311+
{agenda.map(
313312
(agendaDay, i) =>
314313
i === selectedTab &&
315314
agendaDay.tracks.map((track, j) => (
@@ -320,7 +319,7 @@ const Schedules = () => {
320319
track={track}
321320
/>
322321
)),
323-
)} */}
322+
)}
324323
</div>
325324
</Container>
326325
</Section>

0 commit comments

Comments
 (0)