Skip to content

Commit 66bc63f

Browse files
committed
name project "TokenBlend"
1 parent cd13ae2 commit 66bc63f

File tree

2 files changed

+29
-2
lines changed

2 files changed

+29
-2
lines changed

web/src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<div class="container">
55
<Menubar :model="items">
66
<template #start>
7-
<router-link to="/" class="logo">Bot</router-link>
7+
<router-link to="/" class="logo">TokenBlend</router-link>
88
</template>
99
</Menubar>
1010
</div>

web/src/views/Home.vue

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
<template>
22
<div class="home">
3-
<img alt="Vue logo" src="../assets/logo.png" />
3+
<div class="hero position-relative text-center p-4">
4+
<h1 class="display-1">TokenBlend</h1>
5+
<h2 class="h2">Asset allocation for your Enzyme funds and Ethereum wallet</h2>
6+
</div>
47
</div>
58
</template>
69

@@ -11,3 +14,27 @@ export default defineComponent({
1114
name: 'Home',
1215
});
1316
</script>
17+
18+
<style lang="scss" scoped>
19+
.hero::before {
20+
content: "";
21+
position: absolute;
22+
top: 0; left: 0;
23+
width: 100%; height: 100%;
24+
background-image: url(https://images.unsplash.com/photo-1529517986296-847580704921?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1650&q=80);
25+
background-size: cover;
26+
filter: brightness(50%);
27+
z-index: -1;
28+
}
29+
.hero {
30+
margin-top: -0.5rem;
31+
color: white;
32+
}
33+
.display-1 {
34+
padding-top: 10rem;
35+
padding-bottom: 4rem;
36+
}
37+
.h2 {
38+
padding-bottom: 8rem;
39+
}
40+
</style>

0 commit comments

Comments
 (0)