mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 20:19:34 +01:00
81 lines
1.9 KiB
Vue
81 lines
1.9 KiB
Vue
<script setup lang="ts">
|
|
const route = useRoute()
|
|
|
|
const links = [{
|
|
label: 'Figma',
|
|
to: '/figma'
|
|
}, {
|
|
label: 'Roadmap',
|
|
to: '/roadmap'
|
|
}, {
|
|
label: 'Terms',
|
|
to: '/pro/terms'
|
|
}, {
|
|
label: 'Releases',
|
|
to: 'https://github.com/nuxt/ui/releases',
|
|
target: '_blank'
|
|
}]
|
|
</script>
|
|
|
|
<template>
|
|
<USeparator :icon="route.path === '/' ? undefined : 'i-simple-icons-nuxtdotjs'" class="h-px" />
|
|
|
|
<UFooter>
|
|
<template #left>
|
|
<NuxtLink to="https://github.com/nuxt/ui" target="_blank" class="text-sm text-(--ui-text-muted)">
|
|
Published under <span class="text-(--ui-text-highlighted)">MIT License</span>
|
|
</NuxtLink>
|
|
</template>
|
|
|
|
<UNavigationMenu :items="links" variant="link" color="neutral" />
|
|
|
|
<template #right>
|
|
<UButton
|
|
aria-label="Nuxt Website"
|
|
icon="i-simple-icons-nuxtdotjs"
|
|
to="https://nuxt.com"
|
|
target="_blank"
|
|
color="neutral"
|
|
variant="ghost"
|
|
size="sm"
|
|
/>
|
|
<UButton
|
|
aria-label="Nuxt UI on Discord"
|
|
icon="i-simple-icons-discord"
|
|
to="https://chat.nuxt.dev"
|
|
target="_blank"
|
|
color="neutral"
|
|
variant="ghost"
|
|
size="sm"
|
|
/>
|
|
<UButton
|
|
aria-label="Nuxt on X"
|
|
icon="i-simple-icons-x"
|
|
to="https://x.com/nuxt_js"
|
|
target="_blank"
|
|
color="neutral"
|
|
variant="ghost"
|
|
size="sm"
|
|
/>
|
|
<UButton
|
|
aria-label="Nuxt on BlueSky"
|
|
icon="i-simple-icons-bluesky"
|
|
to="https://bsky.app/profile/nuxt.com"
|
|
target="_blank"
|
|
color="neutral"
|
|
variant="ghost"
|
|
size="sm"
|
|
/>
|
|
<UButton
|
|
aria-label="Nuxt UI on GitHub"
|
|
icon="i-simple-icons-github"
|
|
to="https://github.com/nuxt/ui"
|
|
target="_blank"
|
|
color="neutral"
|
|
variant="ghost"
|
|
size="sm"
|
|
/>
|
|
</template>
|
|
</UFooter>
|
|
</template>
|