spot2gether-frontend/src/views/HomePage.vue
2022-11-03 22:40:30 +01:00

11 lines
329 B
Vue

<template>
<div class="home">
<h1>Spot2Gether</h1>
<p>
listen to music with your friends
</p>
<router-link v-if="!$api.isAuthorized()" to="/auth" class="btn btn-primary">Get started</router-link>
<router-link v-else to="/me" class="btn btn-primary">Go to my profile</router-link>
</div>
</template>