7f800e80fd5bce248f73b37b249879a1aa8f9487
[e-mobility-charging-stations-simulator.git] / ui / web / src / views / NotFoundView.vue
1 <template>
2 <Container id="not-found">
3 404 - Not found
4 </Container>
5 </template>
6
7 <script setup lang="ts">
8 import Container from '@/components/Container.vue'
9 </script>
10
11 <style>
12 #not-found {
13 display: flex;
14 justify-content: center;
15 align-items: center;
16 font-size: 2rem;
17 font-weight: bold;
18 }
19 </style>