Skip to content

Commit 9efcc75

Browse files
andreas-taranetzjgrumboe
authored andcommitted
Update hero with new date and modify wrap up section for previous events
1 parent 2e5b806 commit 9efcc75

File tree

6 files changed

+44
-40
lines changed

6 files changed

+44
-40
lines changed

src/components/pages/home/hero/hero.jsx

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,16 @@ const Hero = () => (
1313
<div className="flex flex-col gap-4 max-w-[580px] md:max-w-full">
1414
<h1 className="text-start mb-0">Cloud Native Days Austria</h1>
1515
<p>
16-
<strong className="text-pink">It's a wrap!</strong>
16+
<strong className="text-purple">Mark your calendars!</strong>
1717
<br />
18-
On October 7th and 8th, 2025 the Cloud Native community gathered in Vienna, Austria. We
19-
spent two days filled with exciting talks, networking and partying.
18+
On September <strong className="text-pink">29th and 30th</strong>, 2026 the Cloud Native
19+
community will gather in Vienna, Austria. We will spend two days filled with exciting
20+
talks, networking and partying.
2021
</p>
2122
<p>
2223
Cloud Native Days Austria is a conference aimed at developers, platform people, and other
2324
IT professionals interested in cloud native technologies.
2425
</p>
25-
<div className="flex flex-wrap gap-4 md:justify-around">
26-
<Button to="https://www.picdrop.com/giselataschner-carl-hohenbalken/bzmm9YBJW2">
27-
Photos of the event
28-
</Button>
29-
<Button to="https://youtube.com/playlist?list=PLtLBTEzR4SqU9GwgWiaDt10-yOVIN0nzM&si=yQP0zXuHcyH01bHq">
30-
Recordings of the talks
31-
</Button>
32-
</div>
3326
</div>
3427
<a
3528
href="https://www.picdrop.com/giselataschner-carl-hohenbalken/bzmm9YBJW2"
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import PreviousEvents from './previous-events';
2+
3+
export default PreviousEvents;
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
import React from 'react';
2+
3+
import Button from '../../../shared/button';
4+
5+
export const PreviousEvents = () => (
6+
<section className="safe-paddings container-md flex flex-col items-center gap-4">
7+
<h2>Previous Events</h2>
8+
<p>Thank you all for making the Cloud Native Days Austria 2025 a fantastic event!</p>
9+
<p>In case you want to review previous events, check out the following links:</p>
10+
<section>
11+
<h3>Cloud Native Days Austria 2025</h3>
12+
<span className="flex flex-wrap gap-2 justify-center">
13+
<Button to="https://www.picdrop.com/giselataschner-carl-hohenbalken/bzmm9YBJW2">
14+
Photos of the event
15+
</Button>
16+
<Button to="https://youtube.com/playlist?list=PLtLBTEzR4SqU9GwgWiaDt10-yOVIN0nzM&si=yQP0zXuHcyH01bHq">
17+
Recordings of the talks
18+
</Button>
19+
</span>
20+
</section>
21+
<section>
22+
<h3>Kubernetes Community Days Austria</h3>
23+
<span className="flex flex-wrap gap-2 justify-center">
24+
<Button to="https://www.youtube.com/playlist?list=PLtLBTEzR4SqXICiZEESHcElCqQYgjmfYR">
25+
Recordings of 2024
26+
</Button>
27+
<Button to="https://youtube.com/playlist?list=PLtLBTEzR4SqWKGuUBiRm_IuRZf2--CCDt&si=7ZkAV333DhWSpHp0">
28+
Recordings of 2023
29+
</Button>
30+
</span>
31+
</section>
32+
</section>
33+
);
34+
35+
export default PreviousEvents;

src/components/pages/home/wrap-up/index.js

Lines changed: 0 additions & 3 deletions
This file was deleted.

src/components/pages/home/wrap-up/wrap-up.jsx

Lines changed: 0 additions & 24 deletions
This file was deleted.

src/pages/index.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ import Layout from 'components/shared/layout';
66
import SEO from 'components/shared/seo';
77

88
import Cfp from '../components/pages/home/cfp';
9+
import PreviousEvents from '../components/pages/home/previous-events';
910
import Schedule from '../components/pages/home/schedule';
1011
import Sponsors from '../components/pages/home/sponsors';
1112
import SponsorsList from '../components/pages/home/sponsors-list';
1213
import Tickets from '../components/pages/home/tickets';
1314
import Venue from '../components/pages/home/venue';
14-
import WrapUp from '../components/pages/home/wrap-up';
1515
import Speakers from '../components/pages/speakers/speakers';
1616

1717
const HomePage = () => (
@@ -20,10 +20,10 @@ const HomePage = () => (
2020
{/* <Schedule /> */}
2121
{/* <Cfp /> */}
2222
{/* <Info /> */}
23+
<PreviousEvents />
2324
<Speakers keynote />
2425
{/* <Tickets /> */}
2526
<Venue />
26-
<WrapUp />
2727
{/* <Sponsors /> */}
2828
<SponsorsList />
2929
</Layout>

0 commit comments

Comments
 (0)