build(ci): do not cancel workflow in case of autofix failure
[e-mobility-charging-stations-simulator.git] / ui / web / src / views / NotFoundView.vue
CommitLineData
877b880c
JB
1<template><Container id="not-found">404 - Not found</Container></template>
2
3<script setup lang="ts">
4import Container from '@/components/Container.vue'
5</script>
6
7<style>
8#not-found {
9 display: flex;
10 justify-content: center;
11 align-items: center;
12 font-size: 2rem;
13 font-weight: bold;
14}
15</style>