-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
Merge pull request #496 from AgenceBio/feature/maj_page_404
feat: Mise a jour de la page 404
Showing
1 changed file
with
9 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |