mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2026-02-13 21:00:00 +00:00
9 lines
297 B
Vue
9 lines
297 B
Vue
<template>
|
|
<div class="flex h-full w-full flex-col items-center justify-center">
|
|
<p class="mb-8 text-2xl">{{ $t('not_found.not_found') }}</p>
|
|
<router-link class="text-blue-400" replace :to="{ name: 'home' }">
|
|
{{ $t('not_found.back_home') }}
|
|
</router-link>
|
|
</div>
|
|
</template>
|