mirror of
https://github.com/tornadocash/trusted-setup-server.git
synced 2024-11-22 01:46:52 +01:00
29 lines
598 B
Vue
29 lines
598 B
Vue
<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">
|
|
<a
|
|
class="navbar-item"
|
|
target="_blank"
|
|
href="https://medium.com/@tornado.cash/the-biggest-trusted-setup-ceremony-in-the-world-3c6ab9c8fffa#43d9"
|
|
>
|
|
Instructions
|
|
</a>
|
|
</template>
|
|
</b-navbar>
|
|
</template>
|
|
|
|
<script>
|
|
import Logo from '@/components/Logo'
|
|
|
|
export default {
|
|
components: {
|
|
Logo
|
|
}
|
|
}
|
|
</script>
|