first commit

This commit is contained in:
2025-05-23 15:36:39 +07:00
commit 692ffdf2f1
129 changed files with 12232 additions and 0 deletions

33
layouts/default.vue Normal file
View File

@@ -0,0 +1,33 @@
<script setup lang="ts">
import Topbar from "~/components/layout/full/Topbar.vue";
const title = ref(
"Matdash - Nuxt3 Typescript based Free Admin Dashboard Template"
);
useHead({
meta: [{ content: title }],
titleTemplate: (titleChunk) => {
return titleChunk
? `${titleChunk} - Nuxt3 Typescript based Free Admin Dashboard Template`
: "Matdash - Nuxt3 Typescript based Free Admin Dashboard Template";
},
});
</script>
<template>
<v-locale-provider>
<!-- <Topbar /> -->
<v-app>
<LayoutFullMain />
<v-main class="mr-md-4">
<div class="mb-3 hr-layout bg-containerBg">
<v-container fluid class="page-wrapper bg-background pt-md-8 rounded-xl">
<div class="maxWidth">
<NuxtPage />
</div>
</v-container>
</div>
</v-main>
</v-app>
</v-locale-provider>
</template>