-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathfooter.vue
36 lines (36 loc) · 905 Bytes
/
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
<template>
<footer
class="sticky py-4 mt-4 text-center text-gray-800 top-full bg-inherit dark:text-gray-50 min-h-max"
>
Made with ♥ using
<a
href="https://nuxtjs.org"
title="nuxtjs a vuejs based framework inspired by nextjs"
aria-label="nuxtjs a vuejs based framework inspired by nextjs"
>
<Nuxt />
</a>
<span>&</span>
<a
href="https://tailwindcss.com/"
title="tailwind css"
aria-label="tailwind css"
>
<Tailwind />
</a>
by ©
<a
href="https://technikhil314.netlify.app"
class="hover:underline underline-offset-2"
>Nikhil Mehta</a
>
</footer>
</template>
<script lang="ts">
import Vue from 'vue'
import Tailwind from '~/components/icons/tailwind.vue'
import Nuxt from '~/components/icons/nuxt.vue'
export default Vue.extend({
components: { Tailwind, Nuxt },
})
</script>