nuxt3-template/components/FooterBar.vue

26 lines
511 B
Vue

<script setup>
const links = [
'Home',
'About Us',
'Team',
'Services',
'Blog',
'Contact Us',
]
</script>
<template>
<v-footer class="bg-grey-lighten-1">
<v-row justify="center" no-gutters>
<v-btn
v-for="link in links"
:key="link"
color="white"
variant="text"
class="mx-2"
rounded="xl"
>
{{ link }}
</v-btn>
</v-row>
</v-footer>
</template>