woodpecker/web/src/views/NotFound.vue
2023-08-08 12:22:39 +02:00

10 lines
324 B
Vue

<template>
<div class="flex flex-col h-full w-full items-center justify-center">
<p class="text-2xl mb-8">{{ $t('not_found.not_found') }}</p>
<span
><router-link class="text-blue-400" replace :to="{ name: 'home' }">{{
$t('not_found.back_home')
}}</router-link></span
>
</div>
</template>