Footer.vue
1.16 KB
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
<template>
<div class="h-100 d-flex align-center justify-space-between text-medium-emphasis">
<!-- 👉 Footer: left content -->
<span class="d-flex align-center">
©
{{ new Date().getFullYear() }}
Made With
<VIcon
icon="ri-heart-line"
color="error"
size="1.25rem"
class="mx-1"
/>
By <a
href="https://themeselection.com"
target="_blank"
rel="noopener noreferrer"
class="text-primary ms-1"
>ThemeSelection</a>
</span>
<!-- 👉 Footer: right content -->
<span class="d-md-flex gap-x-4 text-primary d-none">
<a
href="https://themeselection.com/license/"
target="noopener noreferrer"
>License</a>
<a
href="https://themeselection.com/"
target="noopener noreferrer"
>More Themes</a>
<a
href="https://demos.themeselection.com/materio-vuetify-vuejs-admin-template/documentation/"
target="noopener noreferrer"
>Documentation</a>
<a
href="https://themeselection.com/support/"
target="noopener noreferrer"
>Support</a>
</span>
</div>
</template>