aboutsummaryrefslogtreecommitdiff
path: root/components/Footer.vue
diff options
context:
space:
mode:
Diffstat (limited to 'components/Footer.vue')
-rw-r--r--components/Footer.vue17
1 files changed, 17 insertions, 0 deletions
diff --git a/components/Footer.vue b/components/Footer.vue
new file mode 100644
index 0000000..0989c00
--- /dev/null
+++ b/components/Footer.vue
@@ -0,0 +1,17 @@
+<template>
+ <section class="flex justify-between items-center py-4 px-8">
+ <p class="text-primary">©{{ currentYear }}. Hiruki</p>
+ <div class="flex items-center gap-2">
+ <NuxtLink class="text-primary bg-secondary text-xl rounded-sm pb-1 px-1.5 hover:bg-opacity-75">
+ <Icon name="eva:github-fill" />
+ </NuxtLink>
+ <NuxtLink class="text-primary bg-secondary text-xl rounded-sm pb-1 px-1.5 hover:bg-opacity-75">
+ <Icon name="fa-solid:dharmachakra" />
+ </NuxtLink>
+ </div>
+ </section>
+</template>
+
+<script setup>
+const currentYear = new Date().getFullYear();
+</script> \ No newline at end of file