add: iteration 1 finished
Finished simple calculator iteration
This commit is contained in:
parent
e4ff2ba229
commit
85e6035a9a
12 changed files with 293 additions and 34 deletions
|
@ -1,7 +1,46 @@
|
|||
<template>
|
||||
<div>THIS IS A FOOTER</div>
|
||||
<footer class="Footer">
|
||||
<h4>Socials</h4>
|
||||
<ul class="socials">
|
||||
<li v-for="social in socials">
|
||||
<a :href="social.href" target="_blank">
|
||||
<Icon :name="social.icon" mode="svg" />
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="bottom">
|
||||
<small>© 2025 by webfussel</small>
|
||||
<ul class="data-links">
|
||||
<li v-for="dataLink in dataLinks">
|
||||
<NuxtLink :to="dataLink.to">
|
||||
{{ dataLink.label }}
|
||||
</NuxtLink>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</footer>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
const socials = [
|
||||
{
|
||||
icon: 'simple-icons:kofi',
|
||||
href: 'https://ko-fi.com/webfussel',
|
||||
},
|
||||
{
|
||||
icon: 'simple-icons:forgejo',
|
||||
href: 'https://git.webfussel.de/webfussel/propapier',
|
||||
},
|
||||
]
|
||||
|
||||
const dataLinks = [
|
||||
{
|
||||
label: 'Impressum',
|
||||
to: '/imprint',
|
||||
},
|
||||
{
|
||||
label: 'Datenschutz',
|
||||
to: '/privacy',
|
||||
}
|
||||
]
|
||||
</script>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue