corp homepage

This commit is contained in:
Tim
2024-04-13 17:02:03 -04:00
parent dd9fbb7af7
commit 3c755c27af
10 changed files with 175 additions and 9 deletions

16
src/corp/CorpLayout.vue Normal file
View File

@@ -0,0 +1,16 @@
<template>
<v-app>
<menu-bar/>
<corp-view/>
<Footer/>
</v-app>
</template>
<script setup>
import Footer from "@/components/Footer.vue";
import {useStore} from "@/store/store.js";
import CorpView from "@/corp/CorpView.vue";
import MenuBar from "@/corp/MenuBar.vue";
const s = useStore()
</script>