aboutsummaryrefslogtreecommitdiff
path: root/src/site/layouts/error.vue
diff options
context:
space:
mode:
authorPitu <[email protected]>2021-01-04 01:04:20 +0900
committerPitu <[email protected]>2021-01-04 01:04:20 +0900
commitfcd39dc550dec8dbcb8325e07e938c5024cbc33d (patch)
treef41acb4e0d5fd3c3b1236fe4324b3fef9ec6eafe /src/site/layouts/error.vue
parentCreate FUNDING.yml (diff)
parentchore: update todo (diff)
downloadhost.fuwn.me-fcd39dc550dec8dbcb8325e07e938c5024cbc33d.tar.xz
host.fuwn.me-fcd39dc550dec8dbcb8325e07e938c5024cbc33d.zip
Merge branch 'dev'
Diffstat (limited to 'src/site/layouts/error.vue')
-rw-r--r--src/site/layouts/error.vue28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/site/layouts/error.vue b/src/site/layouts/error.vue
new file mode 100644
index 0000000..28f3036
--- /dev/null
+++ b/src/site/layouts/error.vue
@@ -0,0 +1,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>