Add footer

This commit is contained in:
2024-09-04 22:30:48 +02:00
parent e48728ef7d
commit 7ca64c61f5
2 changed files with 36 additions and 0 deletions

View File

@@ -3,6 +3,41 @@
</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>
</template>
<style scoped>

View File

@@ -3,6 +3,7 @@
<AppHeader />
<UContainer class="mt-20">
<NuxtPage />
<AppFooter />
</UContainer>
</div>
</template>