19 lines
443 B
Vue
19 lines
443 B
Vue
<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>
|