mirror of
https://github.com/nexus-stc/hyperboria
synced 2025-02-21 14:31:08 +01:00
- [nexus] Switch bot - [bot] Added extra receivers functionality GitOrigin-RevId: 68fc32d3e79ff411758f54f435fe8680fc42dead
26 lines
407 B
Vue
26 lines
407 B
Vue
<template lang="pug">
|
|
nav.navbar.navbar-light.bg-light
|
|
b-container
|
|
nuxt-link(to="/" title="Go to search!").logo
|
|
| > Nexus Cognitron
|
|
a.nav-link(href="https://t.me/nexus_search" title="News")
|
|
| News
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'VHeader',
|
|
data () {
|
|
return {
|
|
query: ''
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
a {
|
|
padding: 5px 0;
|
|
}
|
|
</style>
|