You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
453 B
20 lines
453 B
<template>
|
|
<section class="hero is-primary is-bold">
|
|
<div class="hero-body">
|
|
<div class="container">
|
|
<h1 class="title">
|
|
Welcome to the admin panel for anchiale
|
|
</h1>
|
|
<h2 class="subtitle">
|
|
Primary bold subtitle
|
|
</h2>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { Options, Vue } from 'vue-class-component';
|
|
|
|
export default class Hero extends Vue {}
|
|
</script>
|
|
|