-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
212 lines (192 loc) · 11.9 KB
/
index.html
File metadata and controls
212 lines (192 loc) · 11.9 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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Catalyst</title>
<!-- Tailwind CSS CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<!-- Google Font: Inter -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet">
<!-- Custom Tailwind Configuration -->
<script>
tailwind.config = {
theme: {
extend: {
fontFamily: {
sans: ['Inter', 'sans-serif'],
},
colors: {
'brand-primary': '#6D28D9', // purple-700
'brand-secondary': '#2563EB', // blue-600
'dark-bg': '#111827', // gray-900
'dark-card': '#1F2937', // gray-800
'dark-border': '#374151', // gray-700
'dark-text-primary': '#F9FAFB', // gray-50
'dark-text-secondary': '#D1D5DB', // gray-300
}
}
}
}
</script>
<!-- Custom Styles for Smooth Scroll & Page Theme -->
<style>
body {
font-family: 'Inter', sans-serif;
background-color: #111827; /* dark-bg */
color: #F9FAFB; /* dark-text-primary */
}
/* Glassmorphism effect for cards */
.glass-card {
background: rgba(31, 41, 55, 0.6); /* dark-card with opacity */
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(55, 65, 81, 0.3); /* dark-border with opacity */
}
/* Custom gradient text */
.gradient-text {
background: linear-gradient(to right, #6D28D9, #2563EB);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
color: transparent;
}
</style>
</head>
<body class="antialiased">
<!-- Header & Navigation -->
<header class="fixed w-full z-50 bg-dark-bg/80 backdrop-blur-md border-b border-dark-border/50">
<nav class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between items-center h-16">
<!-- Logo -->
<a href="#home" class="flex-shrink-0 flex items-center">
<span class="text-2xl font-extrabold gradient-text">Catalyst</span>
</a>
<!-- Desktop Nav -->
<div class="hidden md:flex md:items-center md:space-x-6">
<a href="#home" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium transition duration-150">Home</a>
<a href="#why-us" class="text-gray-300 hover:text-white px-3 py-2 rounded-md text-sm font-medium transition duration-150">Why Us</a>
<a href="#apply" class="ml-4 inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md shadow-sm text-white bg-gradient-to-r from-brand-primary to-brand-secondary hover:from-purple-700 hover:to-blue-700 transition duration-300 transform hover:scale-105">
Apply Now
</a>
</div>
<!-- Mobile Menu Button (if needed, but for one-page, nav is simpler) -->
<!-- Mobile menu can be added here if more links are needed -->
</div>
</nav>
</header>
<!-- Main Content -->
<main>
<!-- Hero Section -->
<section id="home" class="pt-32 pb-24 md:pt-48 md:pb-36 relative overflow-hidden">
<!-- Background Gradient Shapes -->
<div class="absolute inset-0 -z-10 opacity-20">
<div class="absolute top-0 left-0 w-96 h-96 bg-brand-primary rounded-full filter blur-3xl opacity-50"></div>
<div class="absolute bottom-0 right-0 w-96 h-96 bg-brand-secondary rounded-full filter blur-3xl opacity-50"></div>
</div>
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
<h1 class="text-4xl md:text-6xl font-extrabold tracking-tight text-dark-text-primary">
Join the <span class="gradient-text">Future of Tech</span>
</h1>
<p class="mt-4 md:mt-6 max-w-2xl mx-auto text-lg md:text-xl text-dark-text-secondary">
We're bringing together the brightest minds in the industry. Whether you're a seasoned developer, a creative programmer, or a passionate tech enthusiast, your next destination to showcase your skills starts here.
</p>
<div class="mt-8 md:mt-10 flex justify-center space-x-4">
<a href="#why-us" class="inline-flex items-center px-8 py-3 border border-dark-border text-base font-medium rounded-md text-dark-text-secondary bg-dark-card hover:bg-gray-700 transition duration-300">
Learn More
</a>
</div>
</div>
</section>
<!-- Why Us Section -->
<section id="why-us" class="py-24 bg-dark-bg/50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center">
<h2 class="text-3xl font-extrabold text-dark-text-primary sm:text-4xl">
Why Join Us?
</h2>
<p class="mt-4 text-lg text-dark-text-secondary">
We're a club of tech- oriented students. We're a community of innovators. You should be in KNUST to apply
</p>
</div>
<div class="mt-16 grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Feature Card 1 -->
<div class="glass-card rounded-xl shadow-2xl p-6 transform hover:scale-105 transition-transform duration-300">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-gradient-to-r from-brand-primary to-brand-secondary text-white">
<!-- SVG Icon: Lightbulb (Innovation) -->
<svg class="h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9.663 17h4.674M12 3c-4.97 0-9 4.03-9 9s4.03 9 9 9 9-4.03 9-9c0-.462-.05-.91-.14-1.352A8.938 8.938 0 0012 3z" />
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 3v1m0 16v1m-6.364-2.364l.707.707M17.657 6.343l.707.707m-12.02 0l.707-.707M17.657 17.657l.707-.707M3 12h1m16 0h1M5.636 6.343l-.707.707m12.02 0l-.707-.707" />
</svg>
</div>
<h3 class="mt-6 text-xl font-bold text-dark-text-primary">Innovate & Create</h3>
<p class="mt-2 text-base text-dark-text-secondary">
Work on cutting-edge projects, solve complex problems, and push the boundaries of technology. Your ideas matter here.
</p>
</div>
<!-- Feature Card 2 -->
<div class="glass-card rounded-xl shadow-2xl p-6 transform hover:scale-105 transition-transform duration-300">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-gradient-to-r from-brand-primary to-brand-secondary text-white">
<!-- SVG Icon: Users (Culture) -->
<svg class="h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 20h5v-2a3 3 0 00-5.356-2.238M4 20h5v-2c0-1.46-1.19-2.67-2.644-2.889M12 11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM4.644 14.889C3.19 13.67 2 11.95 2 10c0-4.42 4.48-8 10-8s10 3.58 10 8c0 1.95-1.19 3.67-2.644 4.889" />
</svg>
</div>
<h3 class="mt-6 text-xl font-bold text-dark-text-primary">Supportive Culture</h3>
<p class="mt-2 text-base text-dark-text-secondary">
Join a collaborative and inclusive environment where everyone is valued. We grow together, succeed together.
We're not getting paid for this,we're a club of people with ideas,we build,collaborate,bring our minds together!
</p>
</div>
<!-- Feature Card 3 -->
<div class="glass-card rounded-xl shadow-2xl p-6 transform hover:scale-105 transition-transform duration-300">
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-gradient-to-r from-brand-primary to-brand-secondary text-white">
<!-- SVG Icon: Trending Up (Growth) -->
<svg class="h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 7h8m0 0v8m0-8l-8 8-4-4-6 6" />
</svg>
</div>
<h3 class="mt-6 text-xl font-bold text-dark-text-primary">Purpose</h3>
<p class="mt-2 text-base text-dark-text-secondary">
We build up ourselves together,work on projects and grow in our field of interest,we are a club!
</p>
</div>
</div>
</div>
</section>
<!-- Open Roles Section -->
<!-- Apply Section -->
<section id="apply" class="py-24 bg-dark-bg/50 relative overflow-hidden">
<!-- Background Gradient Shapes -->
<div class="absolute inset-0 -z-10 opacity-10">
<div class="absolute top-1/4 left-1/4 w-96 h-96 bg-brand-primary rounded-full filter blur-3xl opacity-50"></div>
<div class="absolute bottom-1/4 right-1/4 w-96 h-96 bg-brand-secondary rounded-full filter blur-3xl opacity-50"></div>
</div>
<div class="max-w-3xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center">
<h2 class="text-3xl font-extrabold text-dark-text-primary sm:text-4xl">
Apply Now
</h2>
<p class="mt-4 text-lg text-dark-text-secondary">
Ready to join us? Submit your details below and upload your CV.
<br>
<span class="text-sm text-gray-400">(Send your CV to lionoctopus21@gmail.com).</span>
</p>
</div>
</main>
<!-- Footer -->
<footer class="bg-dark-bg border-t border-dark-border">
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8 flex flex-col md:flex-row justify-between items-center">
<div class="flex justify-center space-x-6 md:order-2">
</div>
<div class="mt-8 md:mt-0 md:order-1">
<p class="text-center text-base text-dark-text-secondary">
© 2025 Catalyst. All rights reserved.
</p>
</div>
</div>
</footer>
</body>
</html>