Files
nocodb/packages/nc-gui/pages/error/404.vue
Pranav C 1cac58183b refactor: change to light icon
Signed-off-by: Pranav C <pranavxc@gmail.com>
2023-03-24 09:59:57 +05:30

18 lines
421 B
Vue

<script lang="ts" setup>
import { definePageMeta, iconMap } from '#imports'
definePageMeta({
requiresAuth: false,
public: true,
})
</script>
<template>
<div class="bg-primary bg-opacity-5 w-full h-full flex flex-col justify-center items-center text-4xl gap-12">
<div class="text-gray-400 flex gap-4 items-center">
<component :is="iconMap.warning" />
Page Not Found
</div>
</div>
</template>