init: Initial Commit

This commit is contained in:
2024-01-15 20:47:37 -05:00
commit 5a2fd27aa3
28 changed files with 3416 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
<script setup lang="ts">
import { ref } from 'vue'
import Header from './components/Header.vue'
import Home from './components/Home.vue'
import About from './components/About.vue'
import Footer from './components/Footer.vue'
const isHome = ref(true)
const setHome = (value: boolean) => {
isHome.value = value
}
</script>
<template>
<div class="min-h-screen w-full bg-slate-100 flex flex-col justify-between items-center p-16 gap-5 text-neutral-700">
<Header @setHome="setHome" />
<Home v-if="isHome" />
<About v-else />
<Footer />
</div>
</template>