Files
tout-doux/resources/ts/views/NotFoundView.vue
T
klemek 210f7c5cf4
TS Lint / Oxlint (push) Successful in 48s
TS Lint / TypeScript (push) Successful in 56s
TS Lint / ESLint (push) Successful in 59s
feat: vue router and quality of life icons
2026-07-14 12:32:41 +02:00

11 lines
337 B
Vue

<script setup lang="ts">
import { CircleQuestionMarkIcon } from "@lucide/vue";
</script>
<template>
<div class="italic text-xl font-extralight mb-2">
<circle-question-mark-icon class="inline" /> {{ $t('not_found') }}
</div>
<router-link to="/" class="btn mb-4">{{ $t('not_found_button') }}</router-link>
</template>