1
0
mirror of https://github.com/kihashi/stardew_community_checklist.git synced 2025-10-19 08:03:17 +00:00
stardew_community_checklist/components/HeaderBar.vue
2021-04-15 16:42:21 -04:00

24 lines
515 B
Vue

<template>
<section class="hero is-info is-bold">
<b-navbar>
<template #brand>
<b-navbar-item tag="NuxtLink" to="/">
<h1 class="is-size-3 has-text-weight-semibold is-hidden-mobile">
Stardew Community Checklist
</h1>
<h1 class="is-size-3 has-text-weight-semibold is-hidden-tablet">
SCC
</h1>
</b-navbar-item>
</template>
</b-navbar>
</section>
</template>
<script>
export default {}
</script>
<style>
</style>