Some checks failed
continuous-integration/drone/push Build is failing
- 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
18 lines
536 B
Vue
18 lines
536 B
Vue
<template>
|
|
<v-footer app class="grey--text overline" id="admin-footer">
|
|
<span class="mr-2">3110</span>
|
|
<span>© 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> |