Files
tout-doux/resources/ts/views/NotFoundView.vue
T
klemek ab41b5d024
TS Lint / Oxlint (push) Successful in 45s
TS Lint / TypeScript (push) Successful in 52s
TS Lint / ESLint (push) Successful in 57s
feat: home view and list per url
2026-07-14 12:56:55 +02:00

13 lines
382 B
Vue

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