added beginning of whitelist system

This commit is contained in:
2023-04-25 15:51:20 +02:00
parent fa0a9b8e58
commit 796b156e8d
18 changed files with 421 additions and 80 deletions

3
web/layouts/blank.vue Normal file
View File

@@ -0,0 +1,3 @@
<template>
<NuxtPage />
</template>

16
web/layouts/default.vue Normal file
View File

@@ -0,0 +1,16 @@
<template>
<div class="h-full bg-neutral-900">
<div class="hidden sm:grid grid-cols-desktoplayout grid-rows-desktoplayout h-full">
<LayoutNavbar class="col-span-2" />
<LayoutSidebar class="" />
<div class="overflow-y-auto px-10 pt-5">
<NuxtPage />
</div>
</div>
<div class="sm:hidden h-full">
<div class="overflow-y-auto px-2 py-2">
<NuxtPage />
</div>
</div>
</div>
</template>