1
0
mirror of https://github.com/TeamPiped/Piped.git synced 2024-12-16 23:30: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="min-h-[88vh] flex flex-col items-center justify-center">
2022-08-27 16:55:17 +05:30
<h1 class="font-bold !text-9xl">404</h1>
2023-07-27 17:16:05 +05:30
<h2 v-t="'info.page_not_found'" class="!text-2xl" />
<a v-t="'actions.back_to_home'" class="btn mt-16" href="/" />
2022-08-22 17:21:44 +05:30
</div>
</template>