initial commit

This commit is contained in:
garionion 2025-02-26 00:09:11 +01:00
parent 9efc8a209b
commit aabf45915a
48 changed files with 7400 additions and 0 deletions

View file

@ -0,0 +1,5 @@
# Layouts
Layouts are reusable components that wrap around pages. They are used to provide a consistent look and feel across multiple pages.
Full documentation for this feature can be found in the Official [vite-plugin-vue-layouts](https://github.com/JohnCampionJr/vite-plugin-vue-layouts) repository.

View file

@ -0,0 +1,11 @@
<template>
<v-main>
<router-view />
</v-main>
<AppFooter />
</template>
<script lang="ts" setup>
//
</script>