Initial commit

This commit is contained in:
Developer
2025-04-21 16:03:20 +02:00
commit 2832896157
22874 changed files with 3092801 additions and 0 deletions

View File

@@ -0,0 +1,35 @@
<template>
<header-bar />
<div class="min-h-screen flex overflow-hidden">
<sidebar />
<div class="flex-1 flex flex-col overflow-hidden">
<div class="bg-indigo-300 flex-1 flex items-stretch overflow-hidden">
<main class="flex-1 overflow-y-auto pb-10">
<section class="min-w-0 flex-1 h-full flex flex-col overflow-hidden lg:order-last">
<flash-messages />
<slot />
</section>
</main>
<sidebar-secondary v-if="$page.props.sidebar_layout" />
</div>
</div>
</div>
</template>
<script>
import FlashMessages from '@/Shared/Misc/FlashMessages'
import HeaderBar from '@/Shared/LayoutParts/HeaderBar'
import Sidebar from '@/Shared/LayoutParts/Sidebar'
import SidebarSecondary from '@/Shared/LayoutParts/SidebarSecondary'
export default {
components: {
FlashMessages,
HeaderBar,
Sidebar,
SidebarSecondary,
}
}
</script>