Files
nuxt-frontend/components/Admin/3110/Footer.vue
Joris Slagter 791aebc346
Some checks failed
continuous-integration/drone/push Build is failing
Initial Nuxt frontend import
- Complete GGZ Ecademy Nuxt.js user portal
- Learning products browser and management
- Member management interface
- User authentication and roles
- Multi-language support (NL/EN)
- Vuex store for state management
- Component-based architecture
2025-12-02 17:48:48 +01:00

18 lines
536 B
Vue

<template>
<v-footer app class="grey--text overline" id="admin-footer">
<span class="mr-2">3110</span>
<span>&copy; Turning thougts into pixels</span>
<!-- <span>{{ new Date().getFullYear() }}</span> -->
<v-spacer />
<v-btn text small class="grey--text">General terms</v-btn>
<v-btn text small class="grey--text">Privacy Settings</v-btn>
<v-btn text small class="grey--text">Help</v-btn>
</v-footer>
</template>
<style>
#admin-footer {
border-top: 1px solid #dfdbe3 !important;
z-index: 4
}
</style>