add titles
This commit is contained in:
parent
c30c61b46d
commit
b608ece7ae
@ -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;
|
||||||
|
@ -1,5 +0,0 @@
|
|||||||
*markdown*
|
|
||||||
|
|
||||||
**is great**
|
|
||||||
|
|
||||||
but this is cool
|
|
@ -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
|
||||||
|
@ -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
5
pages/blog.vue
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
useHead({ title: "Blog | Eggworld" });
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template></template>
|
@ -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">
|
||||||
|
@ -1 +1,5 @@
|
|||||||
|
<script setup lang="ts">
|
||||||
|
useHead({ title: "Stories | Eggworld" });
|
||||||
|
</script>
|
||||||
|
|
||||||
<template></template>
|
<template></template>
|
||||||
|
Loading…
Reference in New Issue
Block a user