Skip to content

Commit d6feae3

Browse files
authored
Yakında sayfası tasarımı güncellendi
1 parent f48f1a5 commit d6feae3

1 file changed

Lines changed: 118 additions & 12 deletions

File tree

index.html

Lines changed: 118 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,33 +4,139 @@
44
<meta charset="UTF-8">
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
7-
<title>WeapCore - Yakında</title>
7+
<title>WeapCore - Arı Temalı Konsol Client</title>
88
<!-- Bootstrap CSS -->
99
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
10+
<style>
11+
:root {
12+
--primary-color: #f1c40f;
13+
--dark-bg: #1b1b1b;
14+
--light-bg: #2c2c2c;
15+
--text-color: #fff3cd;
16+
--accent-color: #f39c12;
17+
}
18+
body {
19+
background: var(--dark-bg);
20+
color: var(--text-color);
21+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
22+
}
23+
header {
24+
background: var(--light-bg);
25+
}
26+
.btn-primary {
27+
background-color: var(--primary-color);
28+
border-color: var(--primary-color);
29+
color: #000;
30+
}
31+
.btn-primary:hover {
32+
background-color: var(--accent-color);
33+
border-color: var(--accent-color);
34+
}
35+
.hero {
36+
position: relative;
37+
padding: 6rem 0;
38+
color: #ffffff;
39+
overflow: hidden;
40+
}
41+
.hero video {
42+
position: absolute;
43+
top: 0; left: 0;
44+
width: 100%; height: 100%;
45+
object-fit: cover;
46+
z-index: 0;
47+
}
48+
.hero::after {
49+
content: '';
50+
position: absolute;
51+
top: 0; left: 0;
52+
width: 100%; height: 100%;
53+
background: rgba(0, 0, 0, 0.6);
54+
z-index: 1;
55+
}
56+
.hero .container {
57+
position: relative;
58+
z-index: 2;
59+
}
60+
.cards {
61+
display: grid;
62+
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
63+
gap: 1.5rem;
64+
margin-top: 2rem;
65+
}
66+
.card {
67+
background: rgba(241, 196, 15, 0.1);
68+
box-shadow: 0 2px 6px rgba(241, 196, 15, 0.3);
69+
border: 1px solid rgba(241, 196, 15, 0.3);
70+
border-radius: 0.75rem;
71+
transition: transform 0.3s, box-shadow 0.3s;
72+
color: var(--text-color);
73+
}
74+
.card:hover {
75+
transform: translateY(-5px);
76+
box-shadow: 0 4px 12px rgba(243, 156, 18, 0.5);
77+
}
78+
footer {
79+
background: var(--light-bg);
80+
}
81+
</style>
1082
</head>
1183
<body class="d-flex flex-column min-vh-100">
1284

13-
<header class="bg-success text-white py-4">
85+
<header class="py-4">
1486
<div class="container text-center">
15-
<h1 class="display-4 fw-bold">WeapCore</h1>
16-
<p class="lead mb-0">Minecraft AFK otomasyonunda çığır açmaya hazırlanan Türk yapımı uygulama</p>
17-
<p class="mt-2"><small>Geliştiren: <a href="https://github.com/GweineTR" class="text-white text-decoration-underline" target="_blank">@GweineTR</a></small></p>
87+
<h1 class="display-5 fw-bold" style="color: var(--primary-color);">WeapCore Konsol Client</h1>
88+
<p class="lead" style="color: var(--text-color);">Minecraft AFK otomasyonunda çığır açmaya hazırlanan konsol tabanlı uygulama</p>
89+
<p><small>Geliştiren: <a href="https://github.com/GweineTR" class="text-decoration-none" style="color: var(--accent-color);" target="_blank">@GweineTR</a></small></p>
1890
</div>
1991
</header>
2092

2193
<main class="flex-fill">
22-
<section class="bg-light py-5">
23-
<div class="container text-center">
24-
<h2 class="fw-bold">Çok Yakında!</h2>
25-
<p class="mb-4">WeapCore geliştirme aşamasında. Gelişmeleri ve sürümleri aşağıdaki GitHub sayfasından takip edebilirsiniz.</p>
26-
<a href="https://github.com/WeapCore/weapcore.github.io/releases/" class="btn btn-success btn-lg">GitHub Sürüm Takibi</a>
94+
<section class="hero text-center">
95+
<video autoplay muted loop playsinline>
96+
<source src="https://assets.mixkit.co/videos/preview/mixkit-block-environment-1324-large.mp4" type="video/mp4">
97+
</video>
98+
<div class="container">
99+
<h2 class="fw-bold mb-3" style="color: var(--primary-color);">Çok Yakında!</h2>
100+
<p class="mb-4">WeapCore konsol client, güçlü ve sade arayüzüyle Minecraft AFK işlemlerini otomatikleştiriyor.</p>
101+
<div class="d-flex justify-content-center gap-3">
102+
<a href="https://github.com/WeapCore/weapcore/releases" class="btn btn-primary btn-lg d-flex align-items-center">
103+
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/windows8/windows8-original.svg" alt="Windows" width="24" height="24" class="me-2">
104+
Windows
105+
</a>
106+
<a href="https://github.com/WeapCore/weapcore/releases" class="btn btn-primary btn-lg d-flex align-items-center">
107+
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/linux/linux-original.svg" alt="Linux" width="24" height="24" class="me-2">
108+
Linux
109+
</a>
110+
</div>
111+
</div>
112+
</section>
113+
114+
<section class="container mt-5">
115+
<h3 class="mb-4 text-center" style="color: var(--accent-color);">Öne Çıkan Özellikler</h3>
116+
<div class="cards">
117+
<div class="card p-4">
118+
<h5 class="fw-semibold">Kolay Kurulum</h5>
119+
<p>Tek komutla kurulum, zahmetsiz başlangıç.</p>
120+
</div>
121+
<div class="card p-4">
122+
<h5 class="fw-semibold">Hızlı Otomasyon</h5>
123+
<p>Minimal gecikme ile sürekli AFK modu.</p>
124+
</div>
125+
<div class="card p-4">
126+
<h5 class="fw-semibold">Gelişmiş Loglama</h5>
127+
<p>Yapılan işlemleri detaylı kayıt altına alır.</p>
128+
</div>
129+
<div class="card p-4">
130+
<h5 class="fw-semibold">Modüler Yapı</h5>
131+
<p>Yeni özellik eklentilerine açık, genişletilebilir mimari.</p>
132+
</div>
27133
</div>
28134
</section>
29135
</main>
30136

31-
<footer class="bg-dark text-center text-white py-3 mt-auto">
137+
<footer class="text-center text-light py-3 mt-auto">
32138
<div class="container">
33-
<small>&copy; 2025 WeapCore | Geliştiren: <a href="https://github.com/GweineTR" class="text-white text-decoration-underline" target="_blank">@GweineTR</a></small>
139+
<small>&copy; 2025 WeapCore | Geliştiren: <a href="https://github.com/GweineTR" class="text-decoration-none" style="color: var(--accent-color);" target="_blank">@GweineTR</a></small>
34140
</div>
35141
</footer>
36142

0 commit comments

Comments
 (0)