-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
97 lines (83 loc) · 2.68 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing Page</title>
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.no-icons.min.css" rel="stylesheet">
<link href="//netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet">
<style>
.landing-page {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
.button-container {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
margin-top: 20px;
}
.button {
margin: 10px;
padding: 10px 20px;
font-size: 16px;
border: none;
border-radius: 5px;
background-color: #800080;
color: white;
cursor: pointer;
}
.profile-image {
position: absolute;
top: 20px;
right: 20px;
border-radius: 50%;
width: 300px;
height: 300px;
background-image: url('/Users/mannpatel/Desktop/WT/PROJECT/superfrog.jpeg');
background-size: cover;
background-position: center;
}
</style>
</head>
<body>
<div id="app">
<div class="landing-page">
<div class="profile-image"></div>
<h1>Test</h1>
<p>LOLs</p>
<div class="button-container">
<button class="button" @click="goToPricing"><i class="fas fa-dollar-sign"></i> Pricing</button>
<button class="button" @click="goToRange">Range</button>
<button class="button" @click="goToRequest">Request</button>
<button class="button" @click="goToModifyRequest">Modify a request</button>
</div>
</div>
</div>
<script src="https://unpkg.com/vue@latest"></script>
<script>
const app = Vue.createApp({
methods: {
goToPricing() {
// navigate to Pricing page
},
goToRange() {
// navigate to Range page
},
goToRequest() {
// navigate to Request page
},
goToModifyRequest() {
// navigate to Modify Request page
}
}
})
app.mount('#app')
</script>
</body>
</html>