36 lines
895 B
Vue
36 lines
895 B
Vue
<script setup lang="ts">
|
|
const theme = ref("light");
|
|
</script>
|
|
|
|
<template>
|
|
<footer class="p-3 mt-10 bg-[#a2d9ff] font-ibmmono">
|
|
<div class="container px-4 mx-auto max-w-6xl flex justify-center">
|
|
<ul class="flex space-x-2 text-sm text-slate-800 items-end justify-start">
|
|
<li>Copyright © 2022 - Present</li>
|
|
<li>|</li>
|
|
<li>
|
|
All Rights Reserved by
|
|
<nuxt-link
|
|
class="underline"
|
|
target="_blank"
|
|
to="https://nurriyad.xyz"
|
|
>
|
|
Al Asad Nur Riyad
|
|
</nuxt-link>
|
|
</li>
|
|
<li>|</li>
|
|
<li>
|
|
Site source on
|
|
<nuxt-link
|
|
class="underline"
|
|
target="_blank"
|
|
to="https://github.com/nurRiyad/blogs"
|
|
>
|
|
GitHub.
|
|
</nuxt-link>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</footer>
|
|
</template>
|