|
|
@@ -1,19 +1,25 @@ |
|
|
|
<template> |
|
|
|
<div |
|
|
|
class="d-flex justify-content-center align-items-center container header" |
|
|
|
> |
|
|
|
<img src="/small-BubbleLogo-Horizontal-BlackText.png" height="40" /> |
|
|
|
<div class="flex-grow-1"></div> |
|
|
|
<div class="navbar d-flex justify-content-center align-items-center "> |
|
|
|
<router-link to="/help" class="d-flex align-items-center"> |
|
|
|
<Button link>HELP</Button> |
|
|
|
</router-link> |
|
|
|
<router-link to="/sign-up" class="d-flex align-items-center"> |
|
|
|
<Button link>SIGN UP</Button> |
|
|
|
</router-link> |
|
|
|
<router-link to="/help" class="d-flex align-items-center"> |
|
|
|
<Button color="default">SIGN IN</Button> |
|
|
|
</router-link> |
|
|
|
<div class="header"> |
|
|
|
<div class="d-flex justify-content-center align-items-center container "> |
|
|
|
<img src="/small-BubbleLogo-Horizontal-BlackText.png" height="40" /> |
|
|
|
<div class="flex-grow-1"></div> |
|
|
|
<div class="navbar d-flex justify-content-center align-items-center "> |
|
|
|
<router-link to="/help" class="d-flex align-items-center"> |
|
|
|
<Button link> |
|
|
|
{{ messages.button_label_help || 'Help' }} |
|
|
|
</Button> |
|
|
|
</router-link> |
|
|
|
<router-link to="/sign-up" class="d-flex align-items-center"> |
|
|
|
<Button link> |
|
|
|
{{ messages.button_label_sign_up || 'Sign Up' }} |
|
|
|
</Button> |
|
|
|
</router-link> |
|
|
|
<router-link to="/help" class="d-flex align-items-center"> |
|
|
|
<Button color="default" width="118" height="48"> |
|
|
|
{{ messages.button_label_sign_in || 'Sign In' }} |
|
|
|
</Button> |
|
|
|
</router-link> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
@@ -22,7 +28,7 @@ |
|
|
|
.header { |
|
|
|
background-color: white; |
|
|
|
|
|
|
|
height: 85px; |
|
|
|
height: 80px; |
|
|
|
|
|
|
|
.navbar { |
|
|
|
height: 100%; |
|
|
@@ -35,11 +41,15 @@ |
|
|
|
</style> |
|
|
|
|
|
|
|
<script> |
|
|
|
import { mapState } from 'vuex'; |
|
|
|
import { Button } from '~/_components/shared'; |
|
|
|
|
|
|
|
export default { |
|
|
|
components: { |
|
|
|
Button, |
|
|
|
}, |
|
|
|
computed: { |
|
|
|
...mapState('system', ['messages']), |
|
|
|
}, |
|
|
|
}; |
|
|
|
</script> |