-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
164 lines (144 loc) · 4.81 KB
/
index.html
File metadata and controls
164 lines (144 loc) · 4.81 KB
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="EventMap - Discover and create events in your community">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@700&display=swap" rel="stylesheet">
<title>EventMap - Find Events Near You</title>
<style>
/* Reset some default styles */
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
/* Overall page styling */
body {
font-family: 'Roboto', sans-serif;
/* background-color: #121212; */
background-color: #ddd;
color: #ffffff;
margin: 0;
display: flex;
flex-direction: column;
min-height: 100vh;
}
/* Header styling */
header {
background-color: #004260; /* Material Blue 600 */
padding: 20px;
text-align: center;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
header h1 {
font-family: 'Roboto Condensed', sans-serif;
font-size: 2.5em;
font-weight: 500;
}
/* Main content container */
.container {
display: flex;
flex-direction: column;
align-items: center;
padding: 40px 20px;
flex: 1;
text-align: left;
max-width: 1200px;
margin: auto;
}
.container h2 {
font-size: 2em;
font-weight: 600;
margin-bottom: 20px;
color: #1D1E1E; /* Material Blue 100 */
}
.description {
font-size: 1.2em;
line-height: 1.6;
margin-bottom: 40px;
color: #000000; /* Light grey text */
max-width: 800px;
}
/* App Store button */
.app-store-link {
background-color: #1E88E5; /* Material Blue 600 */
color: white;
padding: 15px 40px;
text-decoration: none;
border-radius: 8px;
font-size: 1.1em;
transition: background-color 0.3s ease;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.app-store-link:hover {
background-color: #42A5F5; /* Material Blue 400 */
}
/* Footer styling */
footer {
background-color: #004260;
text-align: center;
padding: 15px;
box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}
footer p {
margin: 0;
font-size: 0.9em;
color: #BBDEFB;
}
.support a {
color: #004260;
text-decoration: none;
}
.support {
font-size: 1.1em;
color: #1D1E1E; /* Darker color for contrast */
margin-bottom: 20px;
text-align: center;
}
img {
border-radius: 15px;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.container h2 {
font-size: 1.5em;
}
.description {
font-size: 1em;
}
.app-store-link {
padding: 12px 30px;
}
}
</style>
</head>
<body>
<header>
<h1>EventMap</h1>
</header>
<div class="container">
<img width=150 height=150 src="appstore.png" alt="EventMap Icon" class="app-icon">
<br>
<h2>Discover Events in Your Community</h2>
<p class="description">
EventMap is an intuitive and effortless way to find things to do in real time! See events happening near you and post your own events for friends and others to attend.
<br><br>
Designed for casual socializing, discovering new hobbies, and organizing meetups.
<br><br>
On a maps-first view, you can see public community events happening near you, or create groups to setup private events only select members can see.
<br><br>
Whether you’re a club member, event coordinator, or looking to join a community, EventMap has something for you!
</p>
<p class="support">For support, please contact us at <a href="mailto:eventmapllc@gmail.com">eventmapllc@gmail.com</a></p>
<a href="https://apps.apple.com/us/app/eventmap-find-nearby-events/id6733252740" class="app-store-link">Download on the App Store!</a>
<br>
<a href="policy.html" class="app-store-link">View Privacy Policy</a>
<br>
<a href="eula.html" class="app-store-link">View EULA</a>
</div>
<footer>
<p>© 2024 EventMap LLC. All rights reserved.</p>
</footer>
</body>
</html>