Initial commit

This commit is contained in:
Edward Tirado Jr 2025-03-30 20:51:11 -05:00
commit 50c4133930
35 changed files with 12673 additions and 0 deletions

16
src/layouts/default.vue Normal file
View file

@ -0,0 +1,16 @@
<template>
<div class="container mx-auto">
<Navbar/>
<NuxtPage/>
</div>
</template>
<script>
export default {
name: "default",
}
</script>
<style scoped>
</style>