Skip to content

Commit

Permalink
Merge pull request #496 from AgenceBio/feature/maj_page_404
Browse files Browse the repository at this point in the history
feat: Mise a jour de la page 404
GregoireDucharme authored Jan 10, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents 558b9bb + 945f833 commit c2b2953
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é.</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 c2b2953

Please sign in to comment.