Skip to content

Commit

Permalink
add challenges
Browse files Browse the repository at this point in the history
  • Loading branch information
marc101101 committed May 16, 2024
1 parent 59c2e9f commit 1bcb1cb
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
import Schedule from './landing/Schedule.svelte';
import Workshops from './landing/Workshops.svelte';
import Hardware from './landing/Hardware.svelte';
import Challenges from './landing/Challenges.svelte';
export const prerender = true;
</script>

Expand All @@ -24,6 +25,7 @@
<Timeline />
<Schedule />
<Workshops />
<Challenges />
<Hardware />
<Supporters />
<Team />
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 @@ -49,6 +49,9 @@
<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="/#challenges" class="nav-element-base">Challenges</a>
</li>
<li class="mt-2 hover:text-hackaburg-900">
<a href="/#hardware" class="nav-element-base">Hardware</a>
</li>
Expand Down
23 changes: 23 additions & 0 deletions src/routes/landing/Challenges.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<script>
import BaseComponent from '../components/BaseComponent.svelte';
</script>

<BaseComponent headline={'Challenges'} subHeadline={''} id={'challenges'}>
<div class="text-center text-white">
<h2 class="text-2xl font-bold text-primary">CURIOX</h2>
<h2 class="text-3xl font-bold">Connect the toy - connected toy</h2>
<p class="mt-4 text-lg">
Use the provided hardware of microcontroller and sensors to build an interactive connected toy
figure that reacts to how you play with it. Get creative and implement playful interactions
between the player and the interactive toy you build. <br /><br />

Hardware we provide and you can use:<br />
ESP32 microcontrollers with WiFi and bluetooth and a huge variety of input sensors and output modules
like camera, gyroscopes, accelerometers, compass module, battery, button, LEDs, speaker, display,
SD card reader, breadboards, cables and more. There will also be several 3D printers available
for use.
</p>

<p>more will follow soon ...</p>
</div>
</BaseComponent>

0 comments on commit 1bcb1cb

Please sign in to comment.