Skip to content

Commit

Permalink
feat: Mise a jour de la page 404
Browse files Browse the repository at this point in the history
  • Loading branch information
GregoireDucharme committed Jan 9, 2025
1 parent 558b9bb commit 7e3c340
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/pages/[...all].vue
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
<route lang="yaml">
meta:
seo:
title: Oups, page introuvable
title: Page introuvable
</route>

<template>
<div class="fr-container fr-my-5w">
<h2>Page introuvable</h2>

<p>Damned !</p>
<p>Vous tentez d’accéder à une page qui a été supprimée ou qui n’a jamais existée.</p>
<router-link :to="store.startPage" class="fr-btn fr-btn--secondary">Revenir à l'accueil</router-link>
</div>
</template>

<script setup>
import { useUserStore } from "@/stores/user";
const store = useUserStore();
</script>

0 comments on commit 7e3c340

Please sign in to comment.