Files
speckle-server/frontend/src/views/NotFound.vue
T

27 lines
674 B
Vue

<template>
<v-container>
<v-row>
<v-col cols="3">
<sidebar-home></sidebar-home>
</v-col>
<v-col cols="9">
<v-sheet rounded="lg" class="pa-15 text-center">
<h1>Page not found _ಥ</h1>
<img :src="'https://robohash.org/' + $route.path + '.png'" />
<p class="ma-10 subtitle-1 font-weight-light">
We can't find the page you're looking for but hey, here's a cool
robot!
</p>
</v-sheet>
</v-col>
</v-row>
</v-container>
</template>
<script>
import SidebarHome from "../components/SidebarHome"
export default {
components: { SidebarHome }
}
</script>