1
0
mirror of https://github.com/kihashi/stardew_community_checklist.git synced 2025-10-19 08:03:17 +00:00
stardew_community_checklist/pages/index.vue

30 lines
525 B
Vue

<template>
<section class="section">
<div class="has-text-centered container">
<H1 class="title">
Stardew Community Checklist
</H1>
<h2 class="subtitle">
Track your progress on the community center bundles
</h2>
<img class="headerimage" :src="require('@/static/favicon.png')">
</div>
</section>
</template>
<script>
export default {
name: 'HomePage',
components: {
}
}
</script>
<style lang="scss" scoped>
.headerimage {
max-height: 50vh
}
</style>