feat(ui): add 'Not found' catch all
[e-mobility-charging-stations-simulator.git] / ui / web / src / views / NotFoundView.vue
1 <template><Container id="not-found">404 - Not found</Container></template>
2
3 <script setup lang="ts">
4 import 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>