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> <style scoped>
nav { nav {
height: 5rem; height: 4rem;
width: 100%; width: 100%;
border: 1px solid red; border: 1px solid red;
padding: 1rem; 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"> <script setup lang="ts">
import Navbar from "../components/Navbar.vue"; import Navbar from "../components/Navbar.vue";
useHead({ title: "Eggworld" });
</script> </script>
<template> <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 /> <Navbar />
<slot /> <slot />
<footer <footer

View File

@ -1,3 +1,7 @@
<script setup lang="ts">
useHead({ title: "About | Eggworld" });
</script>
<template> <template>
<div>about</div> <div>about</div>
</template> </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> <template>
<main class="flex flex-col items-center justify-evenly"> <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> <template></template>