1
0
Fork 0
infojune/src/components/NotFound.vue

16 lines
258 B
Vue

<template>
<div id="notfound">
<h1>Nous n'avons rien trouvé ici 🧐 🧐</h1>
<a href="/" class="button">Retourner a l'accueil</a>
</div>
</template>
<style>
#notfound{
display: flex;
flex-direction: column;
align-items: center;
}
</style>