Files
portfolio/app/layouts/default.vue
2025-11-10 18:09:18 +03:30

26 lines
524 B
Vue

<template>
<div class="layout-default">
<TopNav client:only />
<slot />
<FooterCopyright />
</div>
</template>
<script setup lang="ts">
import TopNav from '@/components/common/TopNav.vue'
import FooterCopyright from '@/components/common/FooterCopyright.vue'
/**
* Default Layout
*
* Main layout for the application including TopNav and Footer.
* This layout is used by default for all pages unless specified otherwise.
*/
</script>
<style scoped>
.layout-default {
/* Layout wrapper */
}
</style>