mirror of
https://github.com/TeamPiped/Piped.git
synced 2025-10-14 11:28:22 +00:00
add 404 page
This commit is contained in:
17
src/components/PageNotFound.vue
Normal file
17
src/components/PageNotFound.vue
Normal file
@@ -0,0 +1,17 @@
|
||||
<template>
|
||||
<div class="flex flex-col justify-center items-center min-h-[88vh]">
|
||||
<h1 class="font-bold">404</h1>
|
||||
<h2 v-t="'info.page_not_found'" />
|
||||
<a class="btn mt-16" href="/" v-t="'actions.back_to_home'" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
/* font size can't be handled within windiCSS classes because it's overwritten with !important */
|
||||
h1 {
|
||||
font-size: 8rem !important;
|
||||
}
|
||||
h2 {
|
||||
font-size: 1.7rem !important;
|
||||
}
|
||||
</style>
|
@@ -314,7 +314,7 @@
|
||||
</tbody>
|
||||
</table>
|
||||
<br />
|
||||
<p v-t="'information.preferences_note'" />
|
||||
<p v-t="'info.preferences_note'" />
|
||||
<br />
|
||||
<button class="btn" v-t="'actions.reset_preferences'" @click="resetPreferences()" />
|
||||
<button class="btn mx-4" v-t="'actions.backup_preferences'" @click="backupPreferences()" />
|
||||
|
Reference in New Issue
Block a user