1
0
mirror of https://github.com/kihashi/stardew_community_checklist.git synced 2025-10-19 08:03:17 +00:00
stardew_community_checklist/src/components/Welcome.vue
2018-10-30 19:43:10 -04:00

26 lines
502 B
Vue

<template>
<section class="container">
<div class="hero is-medium is-bold">
<div class="hero-body">
<h1 class="title">
Stardew Community Checklist
</h1>
<h2 class="subtitle">
Track Your Progress on the Community Center!
</h2>
</div>
</div>
</section>
</template>
<script>
import ItemCard from '@/components/item_card/ItemCard'
export default {
components: {ItemCard},
name: 'welcome'
}
</script>
<style scoped>
</style>