feat: wip idea title, minimal menu for reading

This commit is contained in:
kmacoders
2021-07-10 23:01:41 +07:00
parent f3e4acba3a
commit 4c2b64879b
6 changed files with 85 additions and 21 deletions

View File

@@ -0,0 +1,18 @@
<template>
<div class="hero-body">
<div class="container has-text-centered">
<img src="https://cdn.emk.dev/templates/bulma-logo-light.png" width="150" height="40">
<h2 class="subtitle">
Ghost's Casper theme made with Bulma
</h2>
</div>
</div>
</template>
<script lang="ts">
import { Vue, Component } from 'nuxt-property-decorator'
@Component
export default class MinimalBanner extends Vue {
}
</script>

View File

@@ -0,0 +1,17 @@
<template>
<div class="hero-body">
<div class="container has-text-centered">
<h1 class="title is-1 has-text-primary">
eHandyBlog
</h1>
</div>
</div>
</template>
<script lang="ts">
import { Vue, Component } from 'nuxt-property-decorator'
@Component
export default class MinimalBanner extends Vue {
}
</script>