2026-01-13 10:46:40 +07:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
/**
|
|
|
|
|
* @file default.vue
|
|
|
|
|
* @description Default application layout for authenticated users.
|
|
|
|
|
* Includes the AppHeader and MobileNav.
|
|
|
|
|
*/
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
|
|
|
|
<!-- App Shell: Main container with global background and text color -->
|
2026-01-14 11:36:28 +07:00
|
|
|
<div class="app-shell min-h-screen transition-colors duration-200">
|
2026-01-13 10:46:40 +07:00
|
|
|
<!-- Header -->
|
|
|
|
|
<AppHeader />
|
2026-01-14 11:36:28 +07:00
|
|
|
|
2026-01-13 10:46:40 +07:00
|
|
|
<!-- Main Content Area -->
|
|
|
|
|
<main class="app-main">
|
|
|
|
|
<slot />
|
|
|
|
|
</main>
|
2026-01-14 11:36:28 +07:00
|
|
|
|
2026-01-13 10:46:40 +07:00
|
|
|
<!-- Mobile Bottom Navigation (Visible only on small screens) -->
|
|
|
|
|
<MobileNav />
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|