-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
56 lines (54 loc) · 3.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CommUnity - Empowering Local Voices</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Inter', sans-serif;
}
.glass-effect {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
}
</style>
</head>
<body class="bg-gradient-to-br from-gray-50 to-gray-100 text-gray-800 min-h-screen leading-relaxed">
<header class="relative py-12 bg-gradient-to-r from-green-600 to-green-700 text-white shadow-lg">
<div class="flex flex-col items-center max-w-6xl mx-auto px-4">
<div class="text-center max-w-2xl">
<img src="images/HACKRPI.png" alt="CommUnity Logo" class="w-32 h-32 mb-4 rounded-lg shadow-xl transform hover:scale-105 transition-transform duration-300 mx-auto">
<p class="text-lg font-light tracking-wide text-green-50 leading-relaxed">Empowering Local Voices for Urban Transformation</p>
</div>
<nav class="flex flex-wrap justify-center gap-4 mt-8">
<a href="login.html" class="inline-block px-8 py-3 bg-white text-green-700 rounded-lg font-medium hover:shadow-xl transform hover:-translate-y-1 transition-all duration-300 border-2 border-transparent hover:border-green-100">Login</a>
<a href="create_account.html" class="inline-block px-8 py-3 bg-white text-green-700 rounded-lg font-medium hover:shadow-xl transform hover:-translate-y-1 transition-all duration-300 border-2 border-transparent hover:border-green-100">Create Account</a>
<a href="community.html" class="inline-block px-8 py-3 bg-green-800 text-white rounded-lg font-medium hover:shadow-xl transform hover:-translate-y-1 transition-all duration-300 border-2 border-transparent hover:border-green-700">
Dev Access
</a>
</nav>
</div>
</header>
<main class="max-w-3xl mx-auto p-8 mt-12">
<div class="glass-effect rounded-2xl shadow-lg p-12 border border-gray-100 hover:shadow-2xl transition duration-500 relative overflow-hidden">
<div class="absolute top-0 left-0 w-full h-2 bg-gradient-to-r from-green-400 to-green-600"></div>
<h2 class="text-4xl font-bold text-center mb-6 bg-gradient-to-r from-green-600 to-green-700 bg-clip-text text-transparent">Welcome to CommUnity</h2>
<p class="text-center text-xl text-gray-600 leading-relaxed mb-10 max-w-2xl mx-auto">
Join a vibrant platform where your voice shapes the future of your community. Connect directly with local officials and fellow citizens to create meaningful change.
</p>
<div class="text-center">
<a href="community.html"
class="inline-block bg-gradient-to-r from-green-600 to-green-700 text-white px-12 py-4 rounded-lg font-semibold text-lg hover:shadow-2xl transform hover:-translate-y-1 transition-all duration-300 border-2 border-transparent hover:border-green-500">
Explore Community
</a>
</div>
</div>
</main>
<footer class="mt-20 text-center text-gray-600 p-8 border-t border-gray-200 bg-gray-50">
<p class="text-sm font-medium">© 2024 CommUnity - Building Better Cities Together</p>
</footer>
</body>
</html>