mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-06 07:38:43 +00:00
10 lines
324 B
Vue
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>
|