mirror of
https://github.com/Kizuren/kizuren.dev.git
synced 2025-12-21 13:06:11 +01:00
15 lines
No EOL
591 B
Vue
15 lines
No EOL
591 B
Vue
<template>
|
|
<footer class="p-4">
|
|
<div class="flex justify-between items-center px-4 sm:px-6 md:px-8">
|
|
<div>© {{ new Date().getFullYear() }} <ULink to="/" class="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> |