12 lines
308 B
Vue
12 lines
308 B
Vue
<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>
|