-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a16469a
commit 81915b1
Showing
7 changed files
with
44 additions
and
22 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
<script> | ||
import BaseComponent from '../components/BaseComponent.svelte'; | ||
import Button from '../components/Button.svelte'; | ||
const faq = [ | ||
{ | ||
|
@@ -75,7 +76,7 @@ | |
<div class="w-full max-w-3xl mx-auto"> | ||
<div class="-my-6 sm:p-10"> | ||
{#each faq as { question, answer }, i} | ||
<div class="group my-2"> | ||
<div class="group my-2 mt-7"> | ||
<div class="font-caveat font-medium text-2xl text-primary mb-1 sm:mb-0"> | ||
{question} | ||
</div> | ||
|
@@ -90,11 +91,7 @@ | |
</div> | ||
<div class="w-full flex justify-center"> | ||
<a href="mailto:[email protected]"> | ||
<button | ||
class="m-auto mb-8 w-56 text-md w-52 mt-8 border-2 border-white rounded-3xl px-3 py-2 text-white hover:cursor-pointer hover:bg-black hover:text-gray-200" | ||
> | ||
Need support? Contact us! | ||
</button> | ||
<Button label="Need support? Contact us!" /> | ||
</a> | ||
</div> | ||
</BaseComponent> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,46 @@ | ||
<script> | ||
import BaseComponent from '../components/BaseComponent.svelte'; | ||
import busplan from '$lib/busplan.pdf'; | ||
</script> | ||
|
||
<BaseComponent headline={'Venue'} subHeadline={'How to get there?'} id={'venue'}> | ||
<div class="grid grid-cols-1 md:grid-cols-2"> | ||
<div class="p-4"> | ||
<div class="lg:pl-24 flex flex-col"> | ||
<p class="text-lg text-white mb-2 text-left">Techbase Regensburg</p> | ||
<p class="text-lg text-white mb-2 text-left">Franz-Mayer-Straße 1</p> | ||
<p class="text-lg text-white mb-8 text-left">93053 Regensburg</p> | ||
<div class="address lg:pl-24 flex flex-col text-white"> | ||
<p class="text-lg mb-2 text-left">Techbase Regensburg</p> | ||
<p class="text-lg mb-2 text-left">Franz-Mayer-Straße 1</p> | ||
<p class="text-lg mb-8 text-left">93053 Regensburg</p> | ||
<div class="grid md:grid-cols-1 gap-4"> | ||
<a | ||
href="https://www.google.de/maps/dir//TechBase+Regensburg" | ||
class="w-full max-w-xs text-md w-1/2 text-white border-2 rounded-3xl px-3 py-2 cursor-pointer hover:bg-hackaburg-900 hover:text-white flex flex-col items-center" | ||
class="w-full max-w-xs text-md w-1/2 text-hackaburg border-2 border-hackaburg-900 text-hackaburg-900 rounded-3xl px-3 py-2 cursor-pointer hover:bg-hackaburg-900 hover:text-white flex flex-col items-center" | ||
>Directions</a | ||
> | ||
<a | ||
href={busplan} | ||
target="_blank" | ||
rel="noreferrer" | ||
class="w-full max-w-xs text-md text-hackaburg border-2 border-hackaburg-900 text-hackaburg-900 rounded-3xl px-3 py-2 cursor-pointer hover:bg-hackaburg-900 hover:text-white w-1/2 flex flex-col items-center" | ||
>Bus Stop: TechCampus/OTH | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="p-4"> | ||
<iframe | ||
class="size-max" | ||
class="venue" | ||
title="Map" | ||
src="https://www.openstreetmap.org/export/embed.html?bbox=12.093780040740969%2C48.99895101491149%2C12.106568813323976%2C49.005672708905124&layer=mapnik&marker=49.00231197530939%2C12.10017442703247" | ||
scrolling="no" | ||
/> | ||
</div> | ||
</div> | ||
</BaseComponent> | ||
|
||
<style scoped> | ||
.venue { | ||
width: 100%; | ||
height: 25rem; | ||
border-radius: 5px; | ||
} | ||
</style> |