Fix footer

This commit is contained in:
2024-09-05 17:33:30 +02:00
parent 59b3b55656
commit 69513bbecb

View File

@@ -3,43 +3,48 @@
</script>
<template>
<footer class="my-12 flex items-center justify-center gap-1">
<h1 class="tracking-wide text-lg font-bold text-black dark:text-white">
ArtHome
</h1>
<p>by</p>
<UButton
color="red"
variant="link"
to="https://twitter.com/ArthurDanj"
icon="i-ph:x-logo-duotone"
label="Arthur DANJOU"
:padded="false"
target="_blank"
/>
<p>, made with</p>
<UButton
color="green"
variant="link"
to="https://nuxt.com/"
icon="i-vscode-icons:file-type-nuxt"
label="Nuxt"
:padded="false"
target="_blank"
/>
<p>and</p>
<UButton
color="green"
variant="link"
to="https://hub.nuxt.com/"
icon="i-vscode-icons:file-type-nuxt"
label="NuxtHub"
:padded="false"
target="_blank"
/>
<footer class="my-12 flex flex-col items-center gap-4">
<div class="flex flex-col md:flex-row items-center justify-center gap-1">
<h1 class="tracking-wide text-lg font-bold text-black dark:text-white">
ArtHome
</h1>
<div class="flex gap-1 items-center">
<p>by</p>
<UButton
color="red"
variant="link"
to="https://twitter.com/ArthurDanj"
icon="i-ph:x-logo-duotone"
label="Arthur DANJOU"
:padded="false"
target="_blank"
/>,
</div>
<div class="flex gap-1 items-center">
<p>made with</p>
<UButton
color="green"
variant="link"
to="https://nuxt.com/"
icon="i-vscode-icons:file-type-nuxt"
label="Nuxt"
:padded="false"
target="_blank"
/>
<p>and</p>
<UButton
color="green"
variant="link"
to="https://hub.nuxt.com/"
icon="i-vscode-icons:file-type-nuxt"
label="NuxtHub"
:padded="false"
target="_blank"
/>
</div>
</div>
<p class="text-sm text-neutral-500">
Copyrights © 2024 - All rights reserved
</p>
</footer>
</template>
<style scoped>
</style>