Init
This commit is contained in:
18
app/layouts/default.vue
Normal file
18
app/layouts/default.vue
Normal file
@@ -0,0 +1,18 @@
|
||||
<script setup lang="ts">
|
||||
// Default layout with Header and Footer components
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="min-h-screen flex flex-col">
|
||||
<!-- Header -->
|
||||
<CommonHeader />
|
||||
|
||||
<!-- Main content -->
|
||||
<main class="flex-1">
|
||||
<slot />
|
||||
</main>
|
||||
|
||||
<!-- Footer -->
|
||||
<CommonFooter />
|
||||
</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user