elearning/Frontend-Learner/layouts/default.vue

24 lines
565 B
Vue
Raw Normal View History

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 -->
<div class="app-shell min-h-screen transition-colors duration-200">
2026-01-13 10:46:40 +07:00
<!-- Header -->
<AppHeader />
2026-01-13 10:46:40 +07:00
<!-- Main Content Area -->
<main class="app-main">
<slot />
</main>
2026-01-13 10:46:40 +07:00
<!-- Mobile Bottom Navigation (Visible only on small screens) -->
<MobileNav />
</div>
</template>