dml_frontend/pages/[...all].vue

31 lines
849 B
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<section>
<div class="container-20 topSpace">
<h1>Seite nicht gefunden (404)</h1>
<h2>Sorry, diese Seite gibt es nicht</h2>
<p>
Aber ganz ehrlich: Wenn du eine High-Speed-Website willst, die wirklich performt und Besucher begeistert, bist du hier genau richtig.<br>
</p><p>
Wir setzen dich nicht nur ins Netz wir bringen dich nach vorne.
</p>
<NuxtLink to="/" class="btn mintBtn" aria-label="Zur Startseite">
Zur Startseite
</NuxtLink>
</div>
</section>
</template>
<script setup lang="ts">
import { createError } from 'nuxt/app'
// Wichtig: Der 404-Status **muss hier geworfen werden**
throw createError({
statusCode: 404,
statusMessage: 'Seite nicht gefunden'
})
</script>
<style lang="sass">
</style>