Skip to content

Commit 982c674

Browse files
author
Bjorn S.
committed
chore(2025): Attempt to set up the 2025 version.
1 parent 1ed1ed2 commit 982c674

6 files changed

+78
-77
lines changed

src/routes/+page.svelte

+2-3
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,16 @@
66
import Spacer from './Spacer.svelte';
77
import SpeakerScheduleSection from './SpeakerScheduleSection.svelte';
88
import SpeakerSection from './SpeakerSection.svelte';
9-
import WorkshopScheduleSection from './WorkshopScheduleSection.svelte';
109
</script>
1110

1211
<svelte:head>
1312
<title>Frontend Festival 2024</title>
1413

15-
<meta name="title" property="og:title" content="Frontend Festival 2024" />
14+
<meta name="title" property="og:title" content="Frontend Festival 2025" />
1615
<meta
1716
name="description"
1817
property="og:description"
19-
content="On the 5th of September, Sopra Steria will be hosting the second iteration of the Frontend Festival!"
18+
content="On the 19th of June, Sopra Steria will be hosting the second iteration of the Frontend Festival!"
2019
/>
2120
<meta name="type" property="og:type" content="website" />
2221
<meta name="url" property="og:url" content="https://frontendfestival.nl/" />

src/routes/HeaderSection.svelte

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@
1313
<img src="/logo.svg" alt="Frontend Festival Logo" />
1414
</a>
1515
</h1>
16-
<a
16+
<!-- <a
1717
class="inline"
1818
target="_blank"
1919
rel="noreferrer"
2020
href="https://www.eventbrite.nl/e/frontend-festival-tickets-927209848617"
21-
>
21+
> -->
2222
<TagBlock class="text-lg" backgroundColor="honey-flower">
2323
tickets.getYours<span class="font-bold">Now</span>();
2424
</TagBlock>
25-
</a>
25+
<!-- </a> -->
2626
<div class="mt-10 inline">
2727
<TagBlock class="text-lg" backgroundColor="soprasteria">
28-
CFP is now <span class="font-bold">closed</span>
28+
CFP is <span class="font-bold">opening soon!</span>
2929
</TagBlock>
3030
</div>
3131
<div class="flex-center absolute bottom-0 left-0 w-full">

src/routes/InfoSection.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<div class="w-full bg-western py-32 text-black" id="info">
66
<div class="m-auto w-full max-w-6xl text-xl">
77
<TagBlock class="float-left max-w-lg" direction="right" extend>
8-
On the 5th of September, Sopra Steria will be hosting the second iteration of the Frontend
8+
On the 19th of June, Sopra Steria will be hosting the second iteration of the Frontend
99
Festival! Join us for an evening of drinks, talks and workshops about various topics in the
1010
world of opensource Frontend development.
1111
</TagBlock>

src/routes/PracticalInformationSection.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<TagBlock class="mt-5" direction="right" extend backgroundColor="soprasteria">
1212
<div class="flex w-screen max-w-xl gap-5">
1313
<div class="pl-5 text-2xl sm:pl-0">When:</div>
14-
<div class="grow text-2xl">September 5th 2024, 17:00 - 22:00</div>
14+
<div class="grow text-2xl">September 19th 2025, 17:00 - 22:00</div>
1515
</div>
1616
</TagBlock>
1717

src/routes/SpeakerScheduleSection.svelte

+35-34
Original file line numberDiff line numberDiff line change
@@ -7,40 +7,41 @@
77
speaker?: string;
88
};
99
10-
let schedule: ScheduleItem[] = [
11-
{
12-
time: '17:00',
13-
title: 'Walk-in and dinner'
14-
},
15-
{
16-
time: '18:30',
17-
title: 'Custom Elements, or How to Make it Easy for People to Use Your Code',
18-
speaker: 'Stacy Cashmore'
19-
},
20-
{
21-
time: '19:00',
22-
title: 'Ctrl+Alt+VR: Create VR-First Websites for the 2D Web',
23-
speaker: 'Jorrik Klijnsma'
24-
},
25-
{
26-
time: '20:00',
27-
title: 'An Intro to Nx',
28-
speaker: 'Bjorn Schijff'
29-
},
30-
{
31-
time: '20:30',
32-
title: 'Beats in the Browser - Coding Music with JavaScript',
33-
speaker: 'Rowdy Rabouw'
34-
},
35-
{
36-
time: '21:00',
37-
title: 'Wrap-up & Drinks'
38-
},
39-
{
40-
time: '22:00',
41-
title: 'Closing'
42-
}
43-
];
10+
let schedule: ScheduleItem[] = []
11+
// [
12+
// {
13+
// time: '17:00',
14+
// title: 'Walk-in and dinner'
15+
// },
16+
// {
17+
// time: '18:30',
18+
// title: 'Custom Elements, or How to Make it Easy for People to Use Your Code',
19+
// speaker: 'Stacy Cashmore'
20+
// },
21+
// {
22+
// time: '19:00',
23+
// title: 'Ctrl+Alt+VR: Create VR-First Websites for the 2D Web',
24+
// speaker: 'Jorrik Klijnsma'
25+
// },
26+
// {
27+
// time: '20:00',
28+
// title: 'An Intro to Nx',
29+
// speaker: 'Bjorn Schijff'
30+
// },
31+
// {
32+
// time: '20:30',
33+
// title: 'Beats in the Browser - Coding Music with JavaScript',
34+
// speaker: 'Rowdy Rabouw'
35+
// },
36+
// {
37+
// time: '21:00',
38+
// title: 'Wrap-up & Drinks'
39+
// },
40+
// {
41+
// time: '22:00',
42+
// title: 'Closing'
43+
// }
44+
// ];
4445
</script>
4546

4647
<div class="flex-center w-full flex-col bg-shark py-10 text-white" id="schedule">

src/routes/SpeakerSection.svelte

+35-34
Original file line numberDiff line numberDiff line change
@@ -11,40 +11,41 @@
1111
bio?: string;
1212
};
1313
14-
let speakers: Speaker[] = [
15-
{
16-
name: 'Stacy Cashmore',
17-
letters: 'SC',
18-
title: 'Tech Explorer DevOps',
19-
employer: 'Omniplan',
20-
image: '/speakers/sc.webp',
21-
bio: 'Speaker, author, and software developer. Stacy has been developing solutions since the mid-1990s in various companies and industries ranging from facilitating contract jobbing to allowing consumers to close a mortgage without the help of a financial adviser – with lots in between.\n\nShe has a passion for sharing knowledge: using storytelling for sharing her experiences to help teams grow in the ways that they develop software and work together and performing live coding demonstrations to inspire others to try new technologies.\n\nStacy published her first book in 2022, aimed at helping developers get started building dynamic applications using C#, Azure Functions, and Azure Static Web Apps. She is currently busy updating it for a second edition with new SWA functionality and using .NET 9.\n\nFor her effort in the community, Stacy has been awarded the Microsoft MVP for Developer Technologies since 2020.'
22-
},
23-
{
24-
name: 'Rowdy Rabouw',
25-
letters: 'RR',
26-
title: 'Front-end expert',
27-
employer: 'Various employers',
28-
image: '/speakers/rr.webp',
29-
bio: 'Rowdy Rabouw is a Google Developer Expert in Web Technologies with over 25 years of experience in HTML, CSS, JavaScript, and PHP. Currently, he works as a Front-End-Focused Senior DevOps Engineer on Vue, Node and NestJS projects, paying special attention to usability and accessibility. Rowdy loves watching superhero movies and Formula One races and enjoys riding his mountain bike to unwind.'
30-
},
31-
{
32-
name: 'Jorrik Klijnsma',
33-
letters: 'JK',
34-
title: 'Frontend Developer',
35-
employer: 'Sopra Steria',
36-
image: '/speakers/jk.webp',
37-
bio: 'Jorrik is a creative front-end developer at Sopra Steria with a passion for getting and sharing information. He focuses on new and inspiring topics. The moment AI ‘entered the chat’, it won his digital heart. His 8+ years of frontend experience is coming in at a close second.'
38-
},
39-
{
40-
name: 'Bjorn Schijff',
41-
letters: 'BS',
42-
title: 'Sr. Front-end Engineer / Architect',
43-
employer: 'Sopra Steria',
44-
image: '/speakers/bs.webp',
45-
bio: 'Bjorn is an experienced software developer with lots of experience using Angular, RxJS and TypeScript. He has a passion for anything tech related and is happy to share that passion with people.'
46-
}
47-
];
14+
let speakers: Speaker[] = []
15+
// [
16+
// {
17+
// name: 'Stacy Cashmore',
18+
// letters: 'SC',
19+
// title: 'Tech Explorer DevOps',
20+
// employer: 'Omniplan',
21+
// image: '/speakers/sc.webp',
22+
// bio: 'Speaker, author, and software developer. Stacy has been developing solutions since the mid-1990s in various companies and industries ranging from facilitating contract jobbing to allowing consumers to close a mortgage without the help of a financial adviser – with lots in between.\n\nShe has a passion for sharing knowledge: using storytelling for sharing her experiences to help teams grow in the ways that they develop software and work together and performing live coding demonstrations to inspire others to try new technologies.\n\nStacy published her first book in 2022, aimed at helping developers get started building dynamic applications using C#, Azure Functions, and Azure Static Web Apps. She is currently busy updating it for a second edition with new SWA functionality and using .NET 9.\n\nFor her effort in the community, Stacy has been awarded the Microsoft MVP for Developer Technologies since 2020.'
23+
// },
24+
// {
25+
// name: 'Rowdy Rabouw',
26+
// letters: 'RR',
27+
// title: 'Front-end expert',
28+
// employer: 'Various employers',
29+
// image: '/speakers/rr.webp',
30+
// bio: 'Rowdy Rabouw is a Google Developer Expert in Web Technologies with over 25 years of experience in HTML, CSS, JavaScript, and PHP. Currently, he works as a Front-End-Focused Senior DevOps Engineer on Vue, Node and NestJS projects, paying special attention to usability and accessibility. Rowdy loves watching superhero movies and Formula One races and enjoys riding his mountain bike to unwind.'
31+
// },
32+
// {
33+
// name: 'Jorrik Klijnsma',
34+
// letters: 'JK',
35+
// title: 'Frontend Developer',
36+
// employer: 'Sopra Steria',
37+
// image: '/speakers/jk.webp',
38+
// bio: 'Jorrik is a creative front-end developer at Sopra Steria with a passion for getting and sharing information. He focuses on new and inspiring topics. The moment AI ‘entered the chat’, it won his digital heart. His 8+ years of frontend experience is coming in at a close second.'
39+
// },
40+
// {
41+
// name: 'Bjorn Schijff',
42+
// letters: 'BS',
43+
// title: 'Sr. Front-end Engineer / Architect',
44+
// employer: 'Sopra Steria',
45+
// image: '/speakers/bs.webp',
46+
// bio: 'Bjorn is an experienced software developer with lots of experience using Angular, RxJS and TypeScript. He has a passion for anything tech related and is happy to share that passion with people.'
47+
// }
48+
// ];
4849
4950
let focussedSpeaker: number | null = null;
5051
</script>

0 commit comments

Comments
 (0)