aboutsummaryrefslogtreecommitdiff
path: root/src/site/views/NotFound.vue
diff options
context:
space:
mode:
authorPitu <[email protected]>2018-09-16 01:09:02 -0300
committerPitu <[email protected]>2018-09-16 01:09:02 -0300
commitfe10a00ba9a3c30d8718ca004ccd19518466f5bd (patch)
tree369752f59a88dd03df1e9752be0ba166bf93c933 /src/site/views/NotFound.vue
parentFirst version of start script (diff)
downloadhost.fuwn.me-fe10a00ba9a3c30d8718ca004ccd19518466f5bd.tar.xz
host.fuwn.me-fe10a00ba9a3c30d8718ca004ccd19518466f5bd.zip
Site
Diffstat (limited to 'src/site/views/NotFound.vue')
-rw-r--r--src/site/views/NotFound.vue35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/site/views/NotFound.vue b/src/site/views/NotFound.vue
new file mode 100644
index 0000000..17d07d2
--- /dev/null
+++ b/src/site/views/NotFound.vue
@@ -0,0 +1,35 @@
+<style lang="scss" scoped>
+@import "../styles/_colors.scss";
+ h2 {
+ font-weight: 100;
+ color: $textColor;
+ font-size: 4em;
+ text-align: center;
+ }
+</style>
+
+<template>
+ <section class="hero is-fullheight">
+ <Navbar/>
+ <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 },
+ mounted() {
+ this.$ga.page({
+ page: '/404',
+ title: 'Not Found',
+ location: window.location.href
+ });
+ }
+};
+</script>