♻️ refactored code
This commit is contained in:
parent
4cd2ed9a8a
commit
9bc69f9c58
9 changed files with 73 additions and 69 deletions
20
frontend/src/components/form/footer/Footer.svelte
Normal file
20
frontend/src/components/form/footer/Footer.svelte
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<script>
|
||||
import ArrowChevron from "../../svg/ArrowChevron.svelte";
|
||||
import ButtonComponent from "../../userform/inputs/ButtonComponent.svelte";
|
||||
</script>
|
||||
|
||||
<div class="flex justify-center items-center gap-8">
|
||||
<a href="/">
|
||||
<button class="flex items-center gap-2 text-primary font-semibold">
|
||||
<ArrowChevron width=16 direction="left"/>
|
||||
Forrige spørsmål
|
||||
</button>
|
||||
</a>
|
||||
<ButtonComponent text="Send inn svar" url="/" filled={true} />
|
||||
<a href="/">
|
||||
<button class="flex items-center gap-2 text-primary font-semibold opacity-50">
|
||||
Neste spørsmål
|
||||
<ArrowChevron width=16 direction="right"/>
|
||||
</button>
|
||||
</a>
|
||||
</div>
|
||||
Reference in a new issue