ADD: External Imprint
This commit is contained in:
parent
b7a11e5b84
commit
40beae70e9
9 changed files with 122 additions and 16 deletions
22
components/Footer/Footer.vue
Normal file
22
components/Footer/Footer.vue
Normal file
|
@ -0,0 +1,22 @@
|
|||
<style scoped src="./Footer.css"/>
|
||||
|
||||
<template>
|
||||
<footer class="Footer flex-col default-gap">
|
||||
<ul class="sitemap default-gap">
|
||||
<li><a :href="`${mainPage ? '/' : ''}#intro`">Über mich</a></li>
|
||||
<li><a :href="`${mainPage ? '/' : ''}#skills`">Meine Expertise</a></li>
|
||||
<li><a :href="`${mainPage ? '/' : ''}#customers`">Kunden & Projekte</a></li>
|
||||
<li><a :href="`${mainPage ? '/' : ''}#services`">Services</a></li>
|
||||
<li><a :href="`${mainPage ? '/' : ''}#network`">Mein Netzwerk</a></li>
|
||||
<li><a href="/imp">Impressum</a></li>
|
||||
</ul>
|
||||
</footer>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
type Props = {
|
||||
mainPage ?: boolean
|
||||
}
|
||||
|
||||
defineProps<Props>()
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue