-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFooter.vue
47 lines (42 loc) · 1.61 KB
/
Footer.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<template>
<div class="relative bg-jm-secondary-grey-lighter mt-40">
<Background height="127px" parallax="to-left" position="top" src="footer-top.svg"/>
<div class="relative z-10">
<UContainer :ui="{'constrained': 'max-w-2xl'}" class="relative py-10 z-10">
<div class="flex justify-between items-end">
<div>
<address class="not-italic">
JOTT.MEDIA GmbH<br>
Bahnhofstraße 33<br>
31675 Bückeburg<br>
<br>
<nuxt-link href="tel:+4957229184984">+49 5722 9184984</nuxt-link>
<br>
<nuxt-link href="mailto:hallo@jott.media">hallo@jott.media</nuxt-link>
</address>
</div>
<div class="text-right">
<nuxt-link :to="localePath({path: 'imprint'})" class="block font-[800] text-jm-primary-green uppercase">.{{
t('imprint')
}}
</nuxt-link>
<nuxt-link :to="localePath({path: 'privacy'})" class="block font-[800] text-jm-primary-green uppercase">.{{
t('privacy')
}}
</nuxt-link>
</div>
</div>
</UContainer>
<Background :out="false" height="400px" position="bottomRight" src="footer-box.png" width="400px"/>
</div>
<div class="bg-jm-primary-green text-sm py-5">
<UContainer :ui="{'constrained': 'max-w-2xl'}">
<p>© {{ new Date().getFullYear() }} JOTT.MEDIA – {{ t('rights') }}</p>
</UContainer>
</div>
</div>
</template>
<script lang="ts" setup>
const {t} = useI18n()
const localePath = useLocalePath()
</script>