feat: wip idea title, minimal menu for reading
This commit is contained in:
18
components/global/BannerMinimal.vue
Normal file
18
components/global/BannerMinimal.vue
Normal 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>
|
17
components/global/MinimalBanner.vue
Normal file
17
components/global/MinimalBanner.vue
Normal 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>
|
Reference in New Issue
Block a user