mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-28 10:55:37 +00:00
18 lines
421 B
Vue
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>
|