added navigation tilebar

This commit is contained in:
roberts
2023-04-28 08:10:47 +02:00
parent 99b4bda8fa
commit 8a047ae683
30 changed files with 168 additions and 267 deletions

View File

@@ -1,9 +1,9 @@
<script setup>
import TheWelcome from '../components/TheWelcome.vue'
</script>
<template>
<main>
<TheWelcome />
<h1 HomeView h1/>
</main>
</template>

View File

@@ -0,0 +1,16 @@
<template>
<div class="back">
<h1>Back</h1>
</div>
</template>
<style>
@media (min-width: 1024px) {
.about {
min-height: 100vh;
display: flex;
align-items: center;
}
}
</style>

View File

@@ -0,0 +1,16 @@
<template>
<div class="biceps">
<h1>Biceps</h1>
</div>
</template>
<style>
@media (min-width: 1024px) {
.about {
min-height: 100vh;
display: flex;
align-items: center;
}
}
</style>

View File

@@ -1,6 +1,10 @@
<script setup>
</script>
<template>
<div class="about">
<h1>This is an about page</h1>
<div class="chest">
<h1>Chest</h1>
</div>
</template>

View File

@@ -0,0 +1,16 @@
<template>
<div class="legs">
<h1>Legs</h1>
</div>
</template>
<style>
@media (min-width: 1024px) {
.about {
min-height: 100vh;
display: flex;
align-items: center;
}
}
</style>

View File

@@ -0,0 +1,16 @@
<template>
<div class="shoulder">
<h1>Shoulder</h1>
</div>
</template>
<style>
@media (min-width: 1024px) {
.about {
min-height: 100vh;
display: flex;
align-items: center;
}
}
</style>

View File

@@ -0,0 +1,16 @@
<template>
<div class="triceps">
<h1><button>Triceps</button></h1>
</div>
</template>
<style>
@media (min-width: 1024px) {
.about {
min-height: 100vh;
display: flex;
align-items: center;
}
}
</style>