mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-30 14:06:52 +00:00
18 lines
354 B
Vue
18 lines
354 B
Vue
<script lang="ts" setup>
|
|
import { definePageMeta } from '#imports'
|
|
|
|
definePageMeta({
|
|
requiresAuth: false,
|
|
public: true,
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<div class="w-full h-[300px] flex justify-center items-center text-4xl">
|
|
<div class="text-gray-400 flex gap-2 items-center">
|
|
<MdiWarning />
|
|
Page Not Found
|
|
</div>
|
|
</div>
|
|
</template>
|