aboutsummaryrefslogtreecommitdiff
path: root/components/Footer.vue
blob: ac4fb03a494b1e912153df6e945306431f63fad9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<template>
    <section class="flex justify-between items-center p-4">
        <p class="text-primary">©{{ currentYear }}. Hiruki</p>
        <div class="flex items-center gap-2">
            <NuxtLink to="https://github.com/Kenimarru/hiruki" target="_blank" external
                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 to="/dmca" 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>