Skip to content

Commit

Permalink
add hardware
Browse files Browse the repository at this point in the history
  • Loading branch information
marc101101 committed May 15, 2024
1 parent 21d1aab commit 5f02ff4
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 1 deletion.
Binary file added src/lib/images/cutter.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/lib/images/printer.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
import Team from './landing/Team.svelte';
import Schedule from './landing/Schedule.svelte';
import Workshops from './landing/Workshops.svelte';
import Hardware from './landing/Hardware.svelte';
export const prerender = true;
</script>

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

<BaseComponent headline={'Hardware'} subHeadline={'You Need It We Have It!'} id={'hardware'}>
<div class="text-center text-white">
<p>
We have a lot of hardware from us and our supporters. This year we also provide a lasercutter
and two 3D printers. We also have a lot of different smaller hardware components, have a look
at the list below.
</p>
<div class="grid grid-cols-1 md:grid-cols-3 gap-x-4 gap-y-6 md:mt-8 mt-4 sm:p-8">
<div>
<img src={printer} alt="printer" class="m-auto" />
<h1 class="text-xl m-auto mt-4">Pursa Mini</h1>
</div>
<div>
<img src={printer} alt="printer" class="m-auto" />
<h1 class="text-xl m-auto mt-4">Pursa Mini</h1>
</div>
<div>
<img src={cutter} alt="cutter" class="m-auto" />
<h1 class="text-xl m-auto mt-4">Mr Beam Lasercutter</h1>
</div>
</div>
<a
href="https://docs.google.com/spreadsheets/d/1gRr8oxADCrWdkZiIQk2lfpEkRAI-z8vDCcRmEEfjRms/edit?usp=sharing"
target="_blank"
rel="noreferrer"
>
<Button label="Download Hardware List" />
</a>
</div>
</BaseComponent>
1 change: 0 additions & 1 deletion src/routes/landing/Workshops.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<script>
import BaseComponent from '../components/BaseComponent.svelte';
import sponsors from '$lib/images/sponsors.png';
</script>

<BaseComponent headline={'Workshops'} subHeadline={''} id={'workshops'}>
Expand Down

0 comments on commit 5f02ff4

Please sign in to comment.