2021-04-16 20:47:13 +00:00
|
|
|
<!-- TODO: remove, redirect to auth page and show banner instead -->
|
2021-02-02 23:32:30 +00:00
|
|
|
<template lang="html">
|
|
|
|
<b-modal
|
|
|
|
id="authModal"
|
|
|
|
hide-footer
|
|
|
|
centered
|
|
|
|
>
|
|
|
|
<template v-slot:modal-header="{ close }">
|
|
|
|
<modal-header
|
|
|
|
title="Gamebrary"
|
|
|
|
subtitle="Ditch the spreadsheet. Organize your games with Gamebrary!"
|
|
|
|
@close="close"
|
|
|
|
>
|
|
|
|
<template v-slot:header>
|
|
|
|
<img
|
|
|
|
class="logo mr-2"
|
2021-04-16 20:47:13 +00:00
|
|
|
src="/static/gamebrary-logo.png"
|
2021-02-02 23:32:30 +00:00
|
|
|
/>
|
|
|
|
</template>
|
|
|
|
</modal-header>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<div class="text-center">
|
|
|
|
<b-img
|
|
|
|
src="/static/img/screenshot-1.jpg"
|
|
|
|
class="rounded shadow w-75 ml-auto mr-auto mt-2 mb-3"
|
|
|
|
block
|
|
|
|
/>
|
|
|
|
|
|
|
|
<h2>Hi 👋!</h2>
|
|
|
|
|
|
|
|
<p>Gamebrary is an open source tool to organize video game collections.</p>
|
|
|
|
|
|
|
|
<b-button
|
2021-04-16 23:16:19 +00:00
|
|
|
@click="getStarted"
|
|
|
|
variant="success"
|
2021-02-02 23:32:30 +00:00
|
|
|
>
|
2021-04-16 23:16:19 +00:00
|
|
|
<i class="fas fa-rocket fa-fw" aria-hidden />
|
|
|
|
Get started!
|
2021-02-02 23:32:30 +00:00
|
|
|
</b-button>
|
|
|
|
</div>
|
|
|
|
</b-modal>
|
|
|
|
</template>
|
|
|
|
|
2021-04-16 23:16:19 +00:00
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
methods: {
|
|
|
|
getStarted() {
|
|
|
|
this.$bvModal.hide('authModal');
|
|
|
|
this.$router.push({ name: 'auth' });
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
2021-02-02 23:32:30 +00:00
|
|
|
<style lang="scss" rel="stylesheet/scss" scoped>
|
|
|
|
.logo {
|
|
|
|
float: left;
|
|
|
|
height: 40px;
|
|
|
|
}
|
|
|
|
</style>
|