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

Update welcome page to have SCC banner

This commit is contained in:
John Cleaver 2021-04-16 10:50:57 -04:00
parent 990a67e177
commit b43092843a

View File

@ -1,53 +1,29 @@
<template> <template>
<section class="section"> <section class="section">
<div class="columns is-mobile"> <div class="has-text-centered container">
<card <H1 class="title">
title="Free" Stardew Community Checklist
icon="github" </H1>
> <h2 class="subtitle">
Open source on <a href="https://github.com/buefy/buefy"> Track your progress on the community center bundles
GitHub </h2>
</a> <img class="headerimage" :src="require('@/static/favicon.png')">
</card>
<card
title="Responsive"
icon="cellphone-link"
>
<b class="has-text-grey">
Every
</b> component is responsive
</card>
<card
title="Modern"
icon="alert-decagram"
>
Built with <a href="https://vuejs.org/">
Vue.js
</a> and <a href="http://bulma.io/">
Bulma
</a>
</card>
<card
title="Lightweight"
icon="arrange-bring-to-front"
>
No other internal dependency
</card>
</div> </div>
</section> </section>
</template> </template>
<script> <script>
import Card from '~/components/Card'
export default { export default {
name: 'HomePage', name: 'HomePage',
components: { components: {
Card
} }
} }
</script> </script>
<style lang="scss" scoped>
.headerimage {
max-height: 50vh
}
</style>