Skip to content

Commit

Permalink
add workshops
Browse files Browse the repository at this point in the history
  • Loading branch information
marc101101 committed May 5, 2024
1 parent 3768be5 commit 284c063
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 3 deletions.
2 changes: 2 additions & 0 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
import Timeline from './landing/Timeline.svelte';
import Team from './landing/Team.svelte';
import Schedule from './landing/Schedule.svelte';
import Workshops from './landing/Workshops.svelte';
export const prerender = true;
</script>

Expand All @@ -21,6 +22,7 @@
<Hero />
<Timeline />
<Schedule />
<Workshops />
<Supporters />
<Team />
<Behind />
Expand Down
3 changes: 3 additions & 0 deletions src/routes/components/Nav.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@
<li class="mt-2 hover:text-hackaburg-900">
<a href="/#schedule" class="nav-element-base">Schedule</a>
</li>
<li class="mt-2 hover:text-hackaburg-900">
<a href="/#workshops" class="nav-element-base">Workshops</a>
</li>
<li class="mt-2 hover:text-hackaburg-900">
<a href="/#supporters" class="nav-element-base">Supporters</a>
</li>
Expand Down
6 changes: 3 additions & 3 deletions src/routes/landing/Schedule.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@
hours={1}
minutes={0}
time="10:00 - 11:00"
title="Workshop (0): Will follow soon"
title="Workshop (Zollner): AOI – Optimierung durch Automatisierung"
special
/>
<Spacer hours={0} minutes={30} />
<Event
hours={1}
minutes={0}
time="11:30 - 12:30"
title="Workshop (1): Will follow soon"
title="Workshop (R-Next): Urbane Datenplattform (UDP) + Standards: Schlüssel zur Smart City Regensburg"
special
/>
<Event hours={1} minutes={0} time="12:30 - 13:30" title="Lunch" food />
Expand All @@ -55,7 +55,7 @@
hours={1}
minutes={0}
time="14:00 - 15:00"
title="Workshop (2): Will follow soon"
title="Workshop (Continental): Löt-Workshop"
special
/>

Expand Down
32 changes: 32 additions & 0 deletions src/routes/landing/Workshops.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<script>
import BaseComponent from '../components/BaseComponent.svelte';
import sponsors from '$lib/images/sponsors.png';
</script>

<BaseComponent headline={'Workshops'} subHeadline={''} id={'about'}>
<div class="text-center text-white">
<h2 class="text-2xl font-bold text-primary">Sat. 10:00-11:00</h2>
<h2 class="text-3xl font-bold">AOI – Optimierung durch Automatisierung (Zollner)</h2>
<p class="mt-4 text-lg">
Erhalte Einblicke in das Machine-Learning-Modell von Zollner, welches entwickelt wurde, um die
Pseudofehlerquote und den daraus resultierenden Aufwand bei der manuellen Sichtprüfung zu
reduzieren.
</p>

<h2 class="text-2xl font-bold text-primary mt-12">Sat. 14:00-15:00</h2>
<h2 class="text-3xl font-bold">
Urbane Datenplattform (UDP) + Standards: Schlüssel zur Smart City Regensburg (r-Next))
</h2>
<p class="mt-4 text-lg">
In diesem Workshop tauchen wir tiefer in die Welt der Urbanen Datenplattformen (UDP) ein und
beleuchten die zentrale Rolle von Standards für eine erfolgreiche Umsetzung. Dies erfolgt im
Rahmen unserer Challenge ""R_UNLIMITED: Building a City for All"" und anhand bereits
existierender Beispiele, wie dem Abruf von Karten per Web-Service (WMS) aus der städtischen
Geodaten-Infrastruktur."
</p>

<h2 class="text-2xl font-bold text-primary mt-12">Sat. 14:00-15:00</h2>
<h2 class="text-3xl font-bold">Löt-Workshop (Continental)</h2>
<p class="mt-4 text-lg">Soldering rocks! Learn how to solder.</p>
</div>
</BaseComponent>

0 comments on commit 284c063

Please sign in to comment.