-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (39 loc) · 2 KB
/
Copy pathindex.html
File metadata and controls
44 lines (39 loc) · 2 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
<!DOCTYPE html>
<html lang="tr" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Black Corp | Next Gen Solutions</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="style.css">
</head>
<body class="bg-[#050505] text-white">
<nav class="max-w-6xl mx-auto px-8 py-8 flex justify-between items-center">
<span class="font-bold tracking-widest text-lg">BLACK CORP</span>
<div class="space-x-6 text-sm text-zinc-500">
<a href="#projects" class="hover:text-white transition">Projeler</a>
<a href="#team" class="hover:text-white transition">Ekip</a>
<a href="#contact" class="text-white border-b border-white pb-1">İletişim</a>
</div>
</nav>
<header class="max-w-6xl mx-auto px-8 pt-20 pb-32">
<h1 class="text-7xl font-extrabold tracking-tighter mb-8 leading-none">Geleceği <br> <span class="text-zinc-600">Kodluyoruz.</span></h1>
<p class="text-zinc-400 text-xl max-w-lg">Black Corp, yüksek performanslı dijital çözümler üreten bir organizasyondur.</p>
</header>
<section id="projects" class="max-w-6xl mx-auto px-8 py-20">
<h2 class="text-4xl font-bold mb-12">Aktif Projeler</h2>
<div id="project-grid" class="grid md:grid-cols-3 gap-6"></div>
</section>
<section id="team" class="max-w-6xl mx-auto px-8 py-20 border-t border-zinc-900">
<h2 class="text-4xl font-bold mb-12">Ekip</h2>
<div class="flex gap-12">
<div class="group cursor-pointer">
<div class="w-24 h-24 bg-zinc-800 rounded-full mb-4 flex items-center justify-center font-bold text-xl">S</div>
<h4 class="font-bold">Kurucu</h4>
<p class="text-zinc-500 text-sm transition-opacity opacity-0 group-hover:opacity-100">Node.js, Automation</p>
</div>
</div>
</section>
<script src="script.js"></script>
</body>
</html>