Files
tout-doux/resources/ts/views/NotFoundView.vue
T
klemek fb48f64ed8
TS Lint / Oxlint (push) Successful in 57s
TS Lint / TypeScript (push) Successful in 1m8s
TS Lint / ESLint (push) Successful in 1m28s
Docker Build / build (push) Successful in 8m40s
fix: paddings and margins
2026-07-16 11:28:18 +02:00

24 lines
621 B
Vue

<script setup lang="ts">
import { CircleQuestionMarkIcon } from "@lucide/vue";
import { onBeforeMount } from "vue";
import { onBeforeRouteUpdate } from "vue-router";
function updateTitle() {
document.title = "Tout Doux - Not Found";
}
onBeforeMount(updateTitle);
onBeforeRouteUpdate(updateTitle);
</script>
<template>
<div class="italic text-xl font-extralight mt-4">
<circle-question-mark-icon class="inline" /> {{ $t("not_found") }}
</div>
<div class="w-full mt-4">
<router-link to="/" class="btn">{{
$t("not_found_button")
}}</router-link>
</div>
</template>