PronounsPage/components/NotFound.vue
2025-04-15 11:27:14 +02:00

30 lines
592 B
Vue

<script setup lang="ts">
const event = useRequestEvent();
if (event) {
event.node.res.statusCode = 404;
}
</script>
<template>
<div>
<h2>
<Icon v="person-dolly-empty" />
<T>notFound.message</T>
</h2>
<section>
<SearchForm />
</section>
<p class="h4 mt-4">
<nuxt-link to="/">
<Icon v="chevron-circle-left" />
<T>notFound.back</T>
</nuxt-link>
</p>
<AdPlaceholder :phkey="['content-0', 'content-mobile-0']" />
</div>
</template>