File tree Expand file tree Collapse file tree 6 files changed +44
-40
lines changed
Expand file tree Collapse file tree 6 files changed +44
-40
lines changed Original file line number Diff line number Diff 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"
Original file line number Diff line number Diff line change 1+ import PreviousEvents from './previous-events' ;
2+
3+ export default PreviousEvents ;
Original file line number Diff line number Diff line change 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 = 7 ZkAV333DhWSpHp0 " >
28+ Recordings of 2023
29+ </ Button >
30+ </ span >
31+ </ section >
32+ </ section >
33+ ) ;
34+
35+ export default PreviousEvents ;
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -6,12 +6,12 @@ import Layout from 'components/shared/layout';
66import SEO from 'components/shared/seo' ;
77
88import Cfp from '../components/pages/home/cfp' ;
9+ import PreviousEvents from '../components/pages/home/previous-events' ;
910import Schedule from '../components/pages/home/schedule' ;
1011import Sponsors from '../components/pages/home/sponsors' ;
1112import SponsorsList from '../components/pages/home/sponsors-list' ;
1213import Tickets from '../components/pages/home/tickets' ;
1314import Venue from '../components/pages/home/venue' ;
14- import WrapUp from '../components/pages/home/wrap-up' ;
1515import Speakers from '../components/pages/speakers/speakers' ;
1616
1717const 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 >
You can’t perform that action at this time.
0 commit comments