mirror of
https://github.com/TeamPiped/Piped.git
synced 2024-08-14 23:57:27 +00:00
11 lines
362 B
Vue
11 lines
362 B
Vue
<script setup>
|
|
const homeUrl = import.meta.env.BASE_URL;
|
|
</script>
|
|
|
|
<template>
|
|
<div class="min-h-[88vh] flex flex-col items-center justify-center">
|
|
<h1 class="font-bold !text-9xl">404</h1>
|
|
<h2 v-t="'info.page_not_found'" class="!text-2xl" />
|
|
<a v-t="'actions.back_to_home'" class="btn mt-16" :href="homeUrl" />
|
|
</div>
|
|
</template>
|