Skip to content
Permalink
Browse files
Add pineapple logo and navigation bar
  • Loading branch information
Ričards Goldbergs committed Apr 2, 2021
1 parent 94019f0 commit 833c8b946027b9db817ad9bbc1d104e32a984c67
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 6 deletions.
@@ -1,7 +1,5 @@
<template>
<v-app>
<Header />
</v-app>
<Header />
</template>

<script>
@@ -1,18 +1,29 @@
<template>
<div>
<div class="img">
<img :src="image" width="900" height="677" />
<img :src="background" width="780" height="609" />
</div>
<div class="pineappleImage">
<img :src="pineapple" width="86" />
</div>
<v-toolbar>
<v-toolbar-side-icon></v-toolbar-side-icon>
<v-btn class="menu1">About</v-btn>
<v-btn class="menu2">How it works</v-btn>
<v-btn class="menu3">Contact</v-btn>
</v-toolbar>
</div>
</template>

<script>
import image from "@/assets/summer.png";
import background from "@/assets/summer.png";
import pineapple from "@/assets/logoPineapple.png";
export default {
data: function() {
return {
image: image,
background: background,
pineapple: pineapple,
};
},
};
@@ -25,4 +36,46 @@ export default {
top: 0px;
bottom: 0px;
}
.pineappleImage {
position: relative;
top: 50px;
bottom: 0px;
left: 5px;
}
.color {
background-color: black;
}
.menu1 {
color: #6a707b;
position: relative;
left: 180px;
top: 30px;
font-family: Arial;
font-style: normal;
font-weight: normal;
font-size: 14px;
}
.menu2 {
color: #6a707b;
position: relative;
left: 225px;
top: 30px;
font-family: Arial;
font-style: normal;
font-weight: normal;
font-size: 14px;
}
.menu3 {
color: #6a707b;
position: relative;
left: 260px;
top: 30px;
font-family: Arial;
font-style: normal;
font-weight: normal;
font-size: 14px;
}
</style>

0 comments on commit 833c8b9

Please sign in to comment.