init: Initial Commit

This commit is contained in:
2023-10-07 17:25:28 -06:00
commit 9957f888f7
24 changed files with 2823 additions and 0 deletions

20
src/components/404.vue Normal file
View File

@@ -0,0 +1,20 @@
<script setup>
import Footer from './Footer.vue'
</script>
<template>
<div class="w-screen h-screen bg-red-500 text-red-100 flex flex-col items-center justify-between p-12">
<div></div>
<div class="space-y-3 text-center w-[50rem]">
<div class="text-7xl font-semibold">
404
</div>
<div class="text-3xl">
Page not found
</div>
</div>
<Footer />
</div>
</template>