-
Notifications
You must be signed in to change notification settings - Fork 1
/
landing-page.html
144 lines (120 loc) · 4.07 KB
/
landing-page.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!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="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/2.3.2/css/bootstrap-combined.no-icons.min.css"
rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" rel="stylesheet">
<style>
.landing-page {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
}
body {
background-color: #4d2279;
}
.button-container {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
margin-top: 20px;
width: 80%;
/* set the width to 80% to make the buttons fill up the majority of the landing page */
}
.button {
margin: 10px;
padding: 20px 40px;
/* increase the padding to make the buttons bigger */
font-size: 20px;
border: none;
border-radius: 5px;
background-color: white;
color: black;
cursor: pointer;
width: 25%;
border-radius: 40px;
}
.button i {
font-size: 50px;
margin-bottom: 10px;
}
.profile-image {
position: absolute;
top: 20px;
right: 20px;
border-radius: 50%;
width: 250px;
height: 250px;
background-image: url('https://gofrogs.com/common/controls/image_handler.aspx?thumb_id=12&image_path=/images/2018/9/26/SuperFrogSITE_crop_71.jpg');
background-size: cover;
background-position: center;
}
.heading {
font-family: 'Times New Roman', Times, serif;
color: white;
position: absolute;
top: 20px;
left: 20px;
font-size: 50px;
font-weight: 2000px;
}
.description {
font-family: 'Times New Roman', Times, serif;
color: white;
position: absolute;
top: 80px;
left: 20px;
margin-top: 50px;
font-size: 24px;
line-height: 1.2;
}
</style>
</head>
<body>
<div id="app">
<div class="landing-page">
<div class="profile-image"></div>
<h1 class="heading">SuperFrog Scheduler</h1>
<p class="description">
Add TCU Spirit to your event <br>
Request SuperFrog, TCU Cheerleader, & Showgirls to your <br>
wedding, grad party and more!
</p>
<div class="button-container">
<button class="button" @click="goToPricing"><i class="fas fa-money-bill"></i><br> Pricing</button>
<button class="button" @click="goToRange"><i class="fas fa-map-marker-alt"></i><br> Range</button>
<button class="button" @click="goToRequest"><i class="fas fa-calendar-alt"></i><br> Request</button>
<button class="button" @click="goToModifyRequest"><i class="fas fa-pencil-alt"></i><br> 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>