mirror of
https://github.com/Kizuren/kizuren.dev.git
synced 2025-12-24 08:14:07 +01:00
Implement everything
This commit is contained in:
parent
d966dd9562
commit
30d747e046
26 changed files with 1069 additions and 6 deletions
15
components/AppFooter.vue
Normal file
15
components/AppFooter.vue
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<template>
|
||||
<footer class="bg-gray-800 text-white p-4">
|
||||
<div class="flex justify-between items-center px-4 sm:px-6 md:px-8">
|
||||
<div>© {{ new Date().getFullYear() }} <ULink to="/" class="text-white cursor-default">MarcUs7i.Net</ULink>. All rights reserved.</div>
|
||||
<div class="flex gap-4">
|
||||
<ULink to="/discord" target="_blank">Discord</ULink>
|
||||
<ULink v-if="config.siteLinks.github" :to="config.siteLinks.github" target="_blank">GitHub</ULink>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
const { config } = useSiteConfig()
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue