mirror of
https://github.com/nexus-stc/hyperboria
synced 2025-02-15 03:26:52 +01:00
24 lines
371 B
Vue
24 lines
371 B
Vue
<template lang="pug">
|
|
nav.navbar.fixed-bottom.ml-auto
|
|
ul.navbar-nav.ml-auto
|
|
li.nav-item
|
|
| Powered by
|
|
a(href="https://github.com/nexus-stc/hyperboria") Nexus STC
|
|
| , 2025
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'VFooter',
|
|
data () {
|
|
return {
|
|
query: ''
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
|
|
</style>
|