ini punya ahdan
This commit is contained in:
33
components/footer.vue
Normal file
33
components/footer.vue
Normal file
@@ -0,0 +1,33 @@
|
||||
<template>
|
||||
<UFooter :links="links">
|
||||
<template #left>
|
||||
Copyright © {{ new Date().getFullYear() }}
|
||||
</template>
|
||||
|
||||
<template #right>
|
||||
<UButton icon="i-simple-icons-x" color="gray" variant="ghost" to="https://x.com/nuxt_js" target="_blank" />
|
||||
<UButton icon="i-simple-icons-discord" color="gray" variant="ghost" to="https://discord.com/invite/ps2h6QT" target="_blank" />
|
||||
<UButton icon="i-simple-icons-github" color="gray" variant="ghost" to="https://github.com/nuxt/nuxt" target="_blank" />
|
||||
</template>
|
||||
</UFooter>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
{
|
||||
name: 'Appfooter'
|
||||
}
|
||||
|
||||
const links = [{
|
||||
label: 'Nuxt UI',
|
||||
to: 'https://ui.nuxt.com/'
|
||||
}, {
|
||||
label: 'Nuxt Docs',
|
||||
to: 'https://nuxt.com'
|
||||
}, {
|
||||
label: 'Nuxt Studio',
|
||||
to: 'https://nuxt.studio'
|
||||
}]
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user