add titles

This commit is contained in:
eggy 2022-07-22 17:16:27 -04:00
parent c30c61b46d
commit b608ece7ae
7 changed files with 20 additions and 8 deletions

View File

@ -21,7 +21,7 @@ import IconHamburger from "@/assets/images/hamburger.svg?component";
<style scoped>
nav {
height: 5rem;
height: 4rem;
width: 100%;
border: 1px solid red;
padding: 1rem;

View File

@ -1,5 +0,0 @@
*markdown*
**is great**
but this is cool

View File

@ -1,9 +1,11 @@
<script setup lang="ts">
import Navbar from "../components/Navbar.vue";
useHead({ title: "Eggworld" });
</script>
<template>
<div class="flex flex-col items-center w-full h-full">
<div class="flex flex-col items-center w-full h-full justify-between">
<Navbar />
<slot />
<footer

View File

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

5
pages/blog.vue Normal file
View File

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

View File

@ -1,4 +1,6 @@
<script setup lang="ts"></script>
<script setup lang="ts">
useHead({ title: "Home | Eggworld" });
</script>
<template>
<main class="flex flex-col items-center justify-evenly">

View File

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