Latest stuff. Changed colors. Etc.

This commit is contained in:
2023-09-04 22:23:57 -05:00
parent ff1cc6a6d5
commit 4f6751178e
11 changed files with 81 additions and 44 deletions

11
components/NavBar.vue Normal file
View File

@@ -0,0 +1,11 @@
<script setup lang="ts">
</script>
<template>
<div class="flex justify-end px-8 py-4">
<div class="grow"></div>
<a href="/" class="px-4 text-white">Home</a>
<a href="/about" class="px-4 text-white">About Me</a>
<a href="/projects" class="px-4 text-white">Projects</a>
</div>
</template>