trusted-setup-server/components/Navbar.vue

29 lines
598 B
Vue
Raw Normal View History

2020-01-29 14:13:06 +01:00
<template>
<b-navbar wrapper-class="container" class="header">
<template slot="brand">
<b-navbar-item :to="{ path: '/' }" tag="router-link">
<Logo />
</b-navbar-item>
</template>
<template slot="end">
2020-05-14 06:03:04 +02:00
<a
class="navbar-item"
target="_blank"
href="https://medium.com/@tornado.cash/the-biggest-trusted-setup-ceremony-in-the-world-3c6ab9c8fffa#43d9"
>
2020-01-29 14:13:06 +01:00
Instructions
2020-05-14 06:03:04 +02:00
</a>
2020-01-29 14:13:06 +01:00
</template>
</b-navbar>
</template>
<script>
import Logo from '@/components/Logo'
export default {
components: {
Logo
}
}
</script>