mirror of https://github.com/nocodb/nocodb
Pranav C
2 years ago
3 changed files with 30 additions and 1 deletions
@ -0,0 +1,11 @@ |
|||||||
|
<script lang="ts" setup> |
||||||
|
</script> |
||||||
|
|
||||||
|
<template> |
||||||
|
<NuxtPage/> |
||||||
|
</template> |
||||||
|
|
||||||
|
<style scoped> |
||||||
|
.nc-main-tab { |
||||||
|
} |
||||||
|
</style> |
@ -0,0 +1,17 @@ |
|||||||
|
<script> |
||||||
|
export default { |
||||||
|
name: 'Index', |
||||||
|
} |
||||||
|
</script> |
||||||
|
|
||||||
|
<template> |
||||||
|
<div class="nc-main-tab"> |
||||||
|
<span>Welcome to NocoDB!</span> |
||||||
|
</div> |
||||||
|
</template> |
||||||
|
|
||||||
|
<style scoped> |
||||||
|
.nc-main-tab { |
||||||
|
@apply w-full text-3xl text-gray-400 flex align-center justify-center; |
||||||
|
} |
||||||
|
</style> |
Loading…
Reference in new issue