mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
354 B
18 lines
354 B
2 years ago
|
<script lang="ts" setup>
|
||
|
import { definePageMeta } from '#imports'
|
||
|
|
||
|
definePageMeta({
|
||
2 years ago
|
requiresAuth: false,
|
||
2 years ago
|
public: true,
|
||
|
})
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div class="w-full h-[300px] flex justify-center items-center text-4xl">
|
||
2 years ago
|
<div class="text-gray-400 flex gap-2 items-center">
|
||
|
<MdiWarning />
|
||
|
Page Not Found
|
||
|
</div>
|
||
2 years ago
|
</div>
|
||
|
</template>
|