implement ssg config for blog posts in project ,

This commit is contained in:
mahdiarghyani
2025-11-10 18:09:18 +03:30
parent d2333d3db2
commit 713bb83981
37 changed files with 5505 additions and 297 deletions
+8 -6
View File
@@ -1,23 +1,25 @@
<template>
<div class="layout-default">
<!-- Default layout wrapper -->
<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
*
* This is a minimal example layout demonstrating Nuxt's layout system.
* To use this layout in a page, add: definePageMeta({ layout: 'default' })
*
* Learn more: https://nuxt.com/docs/guide/directory-structure/layouts
* 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 {
/* Add default layout styles here */
/* Layout wrapper */
}
</style>