1
0
mirror of https://github.com/TeamPiped/Piped.git synced 2025-01-05 17:10:27 +05:30
Piped/src/components/PageNotFound.vue

8 lines
287 B
Vue
Raw Normal View History

2022-08-22 17:21:44 +05:30
<template>
<div class="flex flex-col justify-center items-center min-h-[88vh]">
2022-08-27 16:55:17 +05:30
<h1 class="font-bold !text-9xl">404</h1>
<h2 class="!text-2xl" v-t="'info.page_not_found'" />
2022-08-22 17:21:44 +05:30
<a class="btn mt-16" href="/" v-t="'actions.back_to_home'" />
</div>
</template>