aboutsummaryrefslogtreecommitdiff
path: root/src/site/layouts/error.vue
blob: 28f3036fe6df9025c4df06490e63947e5ec68eb8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<style lang="scss" scoped>
@import "~/assets/styles/_colors.scss";
	h2 {
		font-weight: 100;
		color: $textColor;
		font-size: 4em;
		text-align: center;
	}
</style>

<template>
	<section class="hero is-fullheight">
		<Navbar :is-white="true" />
		<div class="hero-body">
			<div class="container">
				<h2>404エラ</h2>
			</div>
		</div>
	</section>
</template>

<script>
import Navbar from '~/components/navbar/Navbar.vue';

export default {
	components: { Navbar }
};
</script>