added navigation tilebar
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
<script setup>
|
||||
import TheWelcome from '../components/TheWelcome.vue'
|
||||
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<main>
|
||||
<TheWelcome />
|
||||
<h1 HomeView h1/>
|
||||
</main>
|
||||
</template>
|
||||
|
||||
16
src/views/Muscles/BackView.vue
Normal file
16
src/views/Muscles/BackView.vue
Normal 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>
|
||||
|
||||
16
src/views/Muscles/BicepsView.vue
Normal file
16
src/views/Muscles/BicepsView.vue
Normal 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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
16
src/views/Muscles/LegsView.vue
Normal file
16
src/views/Muscles/LegsView.vue
Normal 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>
|
||||
|
||||
16
src/views/Muscles/ShoulderView.vue
Normal file
16
src/views/Muscles/ShoulderView.vue
Normal 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>
|
||||
|
||||
16
src/views/Muscles/TricepsView.vue
Normal file
16
src/views/Muscles/TricepsView.vue
Normal 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>
|
||||
|
||||
Reference in New Issue
Block a user