Add /about
This commit is contained in:
parent
e0e745a319
commit
822c9d04c7
|
@ -5,6 +5,7 @@
|
||||||
<router-link to="/user" v-if="session.isAuthenticated">user</router-link>
|
<router-link to="/user" v-if="session.isAuthenticated">user</router-link>
|
||||||
<router-link to="/login" v-else-if="session.isAuthenticated === false" href="/login">login</router-link>
|
<router-link to="/login" v-else-if="session.isAuthenticated === false" href="/login">login</router-link>
|
||||||
<router-link disabled to="/" v-else>...</router-link>
|
<router-link disabled to="/" v-else>...</router-link>
|
||||||
|
<router-link to="/about">about</router-link>
|
||||||
</nav>
|
</nav>
|
||||||
</header>
|
</header>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -6,6 +6,7 @@ import './registerServiceWorker'
|
||||||
import './index.css'
|
import './index.css'
|
||||||
|
|
||||||
import HomeView from '@/views/HomeView'
|
import HomeView from '@/views/HomeView'
|
||||||
|
import AboutView from '@/views/AboutView'
|
||||||
import LoginView from '@/views/LoginView'
|
import LoginView from '@/views/LoginView'
|
||||||
import UserView from '@/views/UserView'
|
import UserView from '@/views/UserView'
|
||||||
import MarketView from '@/views/MarketView'
|
import MarketView from '@/views/MarketView'
|
||||||
|
@ -16,10 +17,14 @@ import UserOrders from '@/components/UserOrders'
|
||||||
import OrderForm from '@/components/OrderForm'
|
import OrderForm from '@/components/OrderForm'
|
||||||
import MarketOrders from '@/components/MarketOrders'
|
import MarketOrders from '@/components/MarketOrders'
|
||||||
import MarketStats from '@/components/MarketStats'
|
import MarketStats from '@/components/MarketStats'
|
||||||
|
|
||||||
const routes = [
|
const routes = [
|
||||||
{
|
{
|
||||||
path: '/', component: HomeView
|
path: '/', component: HomeView
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: '/about', component: AboutView
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: '/login', component: LoginView
|
path: '/login', component: LoginView
|
||||||
},
|
},
|
||||||
|
|
|
@ -0,0 +1,41 @@
|
||||||
|
<template>
|
||||||
|
<!-- eslint-disable -->
|
||||||
|
<div class="my-3">
|
||||||
|
<pre>
|
||||||
|
_ _
|
||||||
|
__ _| |__ ___ _ _| |_
|
||||||
|
/ _` | '_ \ / _ \| | | | __|
|
||||||
|
| (_| | |_) | (_) | |_| | |_
|
||||||
|
\__,_|_.__/ \___/ \__,_|\__|</pre>
|
||||||
|
</div>
|
||||||
|
<div class="text-left mx-3">
|
||||||
|
<h1>What is this?</h1>
|
||||||
|
<div class="mx-1">
|
||||||
|
delphi.market is a prediction market based on the bitcoin lightning network.
|
||||||
|
</div>
|
||||||
|
<h1>Prediction what?</h1>
|
||||||
|
<div class="mx-1">
|
||||||
|
Prediction markets are awesome! In prediction markets, traders bet on the outcome of events.
|
||||||
|
Political elections are the classic examples. Watch <a target="_blank"
|
||||||
|
href="https://www.youtube.com/watch?v=xA27x7GRMZQ">this video</a> for more information.
|
||||||
|
</div>
|
||||||
|
<h1>When mainnet?</h1>
|
||||||
|
<div class="mx-1">
|
||||||
|
Currently, the market is running on
|
||||||
|
<a target="_blank" href="https://blog.mutinywallet.com/mutinynet/">mutinynet</a> since it's still WIP.
|
||||||
|
This means that sats traded on here don't have any real value yet and you need to use the
|
||||||
|
<a target="_blank" href="https://faucet.mutinywallet.com/">mutiny faucet</a> to pay invoices. When I am confident
|
||||||
|
that there are no (serious) bugs, I will use a lightning node connected to mainnet. However, no ETA yet.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
h1 {
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: large;
|
||||||
|
font-family: monospace;
|
||||||
|
margin-top: 0.75em;
|
||||||
|
margin-bottom: 0.25em;
|
||||||
|
}
|
||||||
|
</style>
|
Loading…
Reference in New Issue