feat: trial hamburger menu

This commit is contained in:
2022-08-07 11:37:29 -04:00
parent b608ece7ae
commit c9398ebfb0
10 changed files with 79 additions and 19 deletions

View File

@@ -1,3 +1,5 @@
<script setup lang="ts"></script>
<template>
<ContentDoc tag="article" class="prose dark:prose-invert">
<template #not-found>

View File

@@ -1,5 +1,5 @@
<script setup lang="ts">
useHead({ title: "About | Eggworld" });
useTitle("About");
</script>
<template>

View File

@@ -1,5 +1,5 @@
<script setup lang="ts">
useHead({ title: "Blog | Eggworld" });
useTitle("Blog");
</script>
<template></template>

View File

@@ -1,5 +1,5 @@
<script setup lang="ts">
useHead({ title: "Home | Eggworld" });
useTitle("Home");
</script>
<template>
@@ -11,6 +11,8 @@ useHead({ title: "Home | Eggworld" });
<HomeStatBox>Latest story</HomeStatBox>
<HomeStatBox>Latest commit w/details</HomeStatBox>
</div>
<p>SERVICES</p>
<p>ABOUT</p>
</main>
</template>

View File

@@ -1,5 +1,5 @@
<script setup lang="ts">
useHead({ title: "Stories | Eggworld" });
useTitle("Stories");
</script>
<template></template>