-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
361 lines (348 loc) · 15 KB
/
index.html
File metadata and controls
361 lines (348 loc) · 15 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
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SECODE - Teknoloji Topluluğu</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<style>
body {
font-family: 'Inter', sans-serif;
}
.hero-gradient {
background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
position: relative;
overflow: hidden;
}
.hero-image {
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
width: 50%;
height: 100%;
object-fit: cover;
opacity: 0.1;
}
.hero-content {
position: relative;
z-index: 1;
}
.feature-image {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 0.5rem;
margin-bottom: 1.5rem;
}
.feature-card {
transition: all 0.3s ease;
border: 1px solid #e5e7eb;
position: relative;
overflow: hidden;
}
.feature-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(90deg, #2563eb, #1e40af);
transform: scaleX(0);
transition: transform 0.3s ease;
}
.feature-card:hover::before {
transform: scaleX(1);
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.nav-link {
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
width: 0;
height: 2px;
bottom: -2px;
left: 0;
background-color: #1e40af;
transition: width 0.3s ease;
}
.nav-link:hover::after {
width: 100%;
}
.social-icon {
transition: all 0.3s ease;
}
.social-icon:hover {
transform: translateY(-3px);
color: #60a5fa;
}
.stats-card {
background: white;
border-radius: 1rem;
padding: 2rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
}
.stats-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.mobile-menu {
display: none;
}
@media (max-width: 768px) {
.mobile-menu {
display: block;
}
.desktop-menu {
display: none;
}
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.75rem 2rem;
border-radius: 0.5rem;
font-weight: 600;
transition: all 0.3s ease;
text-decoration: none;
cursor: pointer;
min-width: 160px;
}
.btn-primary {
background-color: #1e40af;
color: white;
border: 2px solid #1e40af;
}
.btn-primary:hover {
background-color: #1e3a8a;
border-color: #1e3a8a;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}
.btn-secondary {
background-color: white;
color: #1e40af;
border: 2px solid #1e40af;
}
.btn-secondary:hover {
background-color: #eff6ff;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(30, 64, 175, 0.1);
}
.btn-outline {
background-color: transparent;
color: white;
border: 2px solid white;
}
.btn-outline:hover {
background-color: rgba(255, 255, 255, 0.1);
transform: translateY(-2px);
}
.btn i {
margin-right: 0.5rem;
}
</style>
</head>
<body class="bg-gray-50">
<!-- Navigation -->
<nav class="bg-white shadow-lg fixed w-full z-50">
<div class="max-w-7xl mx-auto px-4">
<div class="flex justify-between items-center h-16">
<div class="flex items-center">
<span class="text-2xl font-bold text-blue-900">SECODE</span>
</div>
<div class="desktop-menu hidden md:flex space-x-8">
<a href="#home" class="nav-link text-gray-700 hover:text-blue-900">Ana Sayfa</a>
<a href="team.html" class="nav-link text-gray-700 hover:text-blue-900">Ekibimiz</a>
<a href="#about" class="nav-link text-gray-700 hover:text-blue-900">Hakkımızda</a>
<a href="#features" class="nav-link text-gray-700 hover:text-blue-900">Özellikler</a>
<a href="#contact" class="nav-link text-gray-700 hover:text-blue-900">İletişim</a>
</div>
<div class="mobile-menu md:hidden">
<button id="mobile-menu-button" class="text-gray-700 hover:text-blue-900">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
<!-- Mobile Menu -->
<div id="mobile-menu-items" class="hidden md:hidden">
<div class="px-2 pt-2 pb-3 space-y-1">
<a href="index.html#home" class="block px-3 py-2 text-gray-700 hover:text-blue-900">Ana Sayfa</a>
<a href="team.html" class="block px-3 py-2 text-gray-700 hover:text-blue-900">Ekibimiz</a>
<a href="index.html#about" class="block px-3 py-2 text-gray-700 hover:text-blue-900">Hakkımızda</a>
<a href="index.html#features" class="block px-3 py-2 text-gray-700 hover:text-blue-900">Özellikler</a>
<a href="index.html#contact" class="block px-3 py-2 text-gray-700 hover:text-blue-900">İletişim</a>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero-gradient text-white pt-32 pb-20 relative">
<img src="photo_5994524437174666503_y.jpg" alt="SECODE Hero" class="hero-image">
<div class="max-w-7xl mx-auto px-4">
<div class="text-center hero-content">
<h1 class="text-5xl font-bold mb-6">SECODE'a Hoş Geldiniz</h1>
<p class="text-xl mb-8 max-w-2xl mx-auto">
Siber güvenlik, yazılım geliştirme ve bilgisayar ağları konularında
tutkulu bilgisayar mühendisliği öğrencilerinden oluşan profesyonel bir topluluk.
</p>
<div class="flex justify-center space-x-4">
<a href="https://docs.google.com/forms/d/e/1FAIpQLSfxQpD1O9h6XMHuNrMDbAkRmDj0pFWWlmoSSD8XY4drhPfUCA/viewform" target="_blank" class="btn btn-primary">
<i class="fas fa-user-plus"></i> Topluluğa Katıl
</a>
<a href="#about" class="btn btn-outline">
<i class="fas fa-info-circle"></i> Daha Fazla Bilgi
</a>
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section id="stats" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12">Topluluk İstatistikleri</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="stats-card text-center">
<div class="text-4xl font-bold text-blue-900 mb-2">500+</div>
<div class="text-gray-600">Aktif Üye</div>
</div>
<div class="stats-card text-center">
<div class="text-4xl font-bold text-blue-900 mb-2">50+</div>
<div class="text-gray-600">Tamamlanan Proje</div>
</div>
<div class="stats-card text-center">
<div class="text-4xl font-bold text-blue-900 mb-2">20+</div>
<div class="text-gray-600">Eğitim & Workshop</div>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section id="features" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4">
<h2 class="text-3xl font-bold text-center mb-12">Uzmanlık Alanlarımız</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<!-- Cybersecurity Card -->
<div class="feature-card p-8 rounded-lg bg-white">
<img src="photo_5790893161428661698_m.jpg" alt="Siber Güvenlik" class="feature-image">
<h3 class="text-xl font-semibold mb-4">Siber Güvenlik</h3>
<p class="text-gray-600 leading-relaxed">
Etik hackerlık, ağ güvenliği ve siber savunma stratejileri konularında
kapsamlı eğitim ve pratik deneyim fırsatları.
</p>
</div>
<!-- Software Development Card -->
<div class="feature-card p-8 rounded-lg bg-white">
<img src="photo_5994524437174666503_y.jpg" alt="Yazılım Geliştirme" class="feature-image">
<h3 class="text-xl font-semibold mb-4">Yazılım Geliştirme</h3>
<p class="text-gray-600 leading-relaxed">
Modern programlama dilleri, yazılım mimarisi ve geliştirme pratikleri
konularında profesyonel eğitim ve proje deneyimi.
</p>
</div>
<!-- Computer Networks Card -->
<div class="feature-card p-8 rounded-lg bg-white">
<img src="photo_5790893161428661698_m.jpg" alt="Bilgisayar Ağları" class="feature-image">
<h3 class="text-xl font-semibold mb-4">Bilgisayar Ağları</h3>
<p class="text-gray-600 leading-relaxed">
Ağ protokolleri, mimarisi ve yönetimi konularında teorik ve pratik
bilgi birikimi kazanma imkanı.
</p>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4">
<div class="text-center">
<h2 class="text-3xl font-bold mb-8">SECODE Hakkında</h2>
<p class="text-gray-600 max-w-3xl mx-auto leading-relaxed">
SECODE, teknoloji konusunda tutkulu bilgisayar mühendisliği öğrencilerini
bir araya getiren öğrenci odaklı bir topluluktur. Siber güvenlik, yazılım
geliştirme ve bilgisayar ağları olmak üzere üç ana alanda uzmanlaşma
fırsatı sunuyoruz. Topluluğumuz, öğrencilere öğrenme, işbirliği ve
profesyonel gelişim için ideal bir platform sağlar.
</p>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4">
<div class="text-center">
<h2 class="text-3xl font-bold mb-8">İletişime Geçin</h2>
<p class="text-gray-600 mb-8">
Topluluğumuza katılmak ister misiniz? Sizden haber almaktan mutluluk duyarız!
</p>
<div class="flex flex-col md:flex-row justify-center items-center space-y-4 md:space-y-0 md:space-x-4">
<a href="contact.html" class="btn btn-primary">
<i class="fas fa-envelope"></i> Bize Ulaşın
</a>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSfxQpD1O9h6XMHuNrMDbAkRmDj0pFWWlmoSSD8XY4drhPfUCA/viewform" target="_blank" class="btn btn-secondary">
<i class="fas fa-user-plus"></i> Topluluğa Katıl
</a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-900 text-white py-12">
<div class="max-w-7xl mx-auto px-4">
<div class="text-center mb-8">
<h3 class="text-xl font-semibold mb-4">Bizi Sosyal Medyada Takip Edin</h3>
<div class="flex justify-center space-x-6">
<a href="https://instagram.com/secode" target="_blank" rel="noopener noreferrer" class="social-icon text-2xl hover:text-blue-400">
<i class="fab fa-instagram"></i>
</a>
<a href="https://t.me/+8QWKBexyXxwxZmJk" target="_blank" rel="noopener noreferrer" class="social-icon text-2xl hover:text-blue-400">
<i class="fab fa-telegram"></i>
</a>
<a href="https://github.com/SecodeCommunity" target="_blank" rel="noopener noreferrer" class="social-icon text-2xl hover:text-blue-400">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/company/secode-community" target="_blank" rel="noopener noreferrer" class="social-icon text-2xl hover:text-blue-400">
<i class="fab fa-linkedin"></i>
</a>
</div>
</div>
<div class="text-center border-t border-gray-800 pt-8">
<p>© 2024 SECODE. Tüm hakları saklıdır.</p>
</div>
</div>
</footer>
<script>
// Smooth scrolling for navigation links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Mobile menu toggle
const mobileMenuButton = document.getElementById('mobile-menu-button');
const mobileMenuItems = document.getElementById('mobile-menu-items');
mobileMenuButton.addEventListener('click', () => {
mobileMenuItems.classList.toggle('hidden');
});
// Close mobile menu when clicking outside
document.addEventListener('click', (e) => {
if (!mobileMenuButton.contains(e.target) && !mobileMenuItems.contains(e.target)) {
mobileMenuItems.classList.add('hidden');
}
});
</script>
</body>
</html>