Skip to content

Commit 7863d8a

Browse files
authored
Site teması cherryblossom olarak güncellendi
1 parent d6feae3 commit 7863d8a

1 file changed

Lines changed: 123 additions & 68 deletions

File tree

index.html

Lines changed: 123 additions & 68 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,30 @@
11
<!DOCTYPE html>
22
<html lang="tr">
33
<head>
4+
<meta name="theme-color" content="#e48fb2">
45
<meta charset="UTF-8">
56
<meta http-equiv="X-UA-Compatible" content="IE=edge">
67
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
7-
<title>WeapCore - Arı Temalı Konsol Client</title>
8-
<!-- Bootstrap CSS -->
9-
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
8+
<title>WeapCore - Cherry Blossom Konsol Client</title>
9+
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
1010
<style>
1111
:root {
12-
--primary-color: #f1c40f;
13-
--dark-bg: #1b1b1b;
14-
--light-bg: #2c2c2c;
15-
--text-color: #fff3cd;
16-
--accent-color: #f39c12;
17-
}
12+
--primary-color: #e48fb2;
13+
--dark-bg: #fff0f5;
14+
--light-bg: #fce4ec;
15+
--text-color: #4a0033;
16+
--accent-color: #d81b60;
17+
}
1818
body {
19-
background: var(--dark-bg);
20-
color: var(--text-color);
21-
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
22-
}
19+
background: linear-gradient(to bottom, #fbeaf2, #fbddea);
20+
color: #5a2a44;
21+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
22+
box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
23+
}
2324
header {
24-
background: var(--light-bg);
25-
}
25+
background: #f7d7e2;
26+
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
27+
}
2628
.btn-primary {
2729
background-color: var(--primary-color);
2830
border-color: var(--primary-color);
@@ -34,113 +36,166 @@
3436
}
3537
.hero {
3638
position: relative;
37-
padding: 6rem 0;
38-
color: #ffffff;
39+
height: 100vh;
3940
overflow: hidden;
4041
}
41-
.hero video {
42+
.hero iframe {
4243
position: absolute;
4344
top: 0; left: 0;
4445
width: 100%; height: 100%;
45-
object-fit: cover;
46+
border: none;
4647
z-index: 0;
4748
}
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-
}
49+
.hero .overlay {
50+
position: relative;
51+
z-index: 1;
52+
background-color: rgba(0, 0, 0, 0.6);
53+
height: 100%;
54+
display: flex;
55+
flex-direction: column;
56+
justify-content: center;
57+
align-items: center;
58+
padding: 2rem;
59+
backdrop-filter: brightness(1.1) blur(2px);
60+
}
6061
.cards {
6162
display: grid;
6263
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
6364
gap: 1.5rem;
6465
margin-top: 2rem;
6566
}
6667
.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-
}
68+
background: rgba(251, 234, 242, 0.9);
69+
box-shadow: 0 4px 12px rgba(180, 100, 130, 0.3);
70+
border: 1px solid rgba(232, 150, 180, 0.2);
71+
border-radius: 1rem;
72+
transition: transform 0.3s, box-shadow 0.3s;
73+
color: var(--text-color);
74+
backdrop-filter: blur(3px);
75+
}
7476
.card:hover {
75-
transform: translateY(-5px);
76-
box-shadow: 0 4px 12px rgba(243, 156, 18, 0.5);
77-
}
77+
transform: translateY(-6px);
78+
box-shadow: 0 8px 20px rgba(216, 27, 96, 0.4);
79+
}
7880
footer {
79-
background: var(--light-bg);
81+
background: #f7d7e2;
82+
box-shadow: 0 -2px 4px rgba(0,0,0,0.05);
83+
}
84+
85+
.video-bg {
86+
position: absolute;
87+
top: 0; left: 0;
88+
width: 100%; height: 100%;
89+
overflow: hidden;
90+
z-index: 0;
91+
pointer-events: none;
8092
}
81-
</style>
93+
.video-foreground {
94+
position: absolute;
95+
top: -50%;
96+
left: -50%;
97+
width: 200%;
98+
height: 200%;
99+
}
100+
.video-foreground iframe {
101+
width: 100%;
102+
height: 100%;
103+
pointer-events: none;
104+
}
105+
::-webkit-scrollbar {
106+
width: 12px;
107+
}
108+
::-webkit-scrollbar-track {
109+
background: var(--dark-bg);
110+
}
111+
::-webkit-scrollbar-thumb {
112+
background-color: var(--primary-color);
113+
border-radius: 6px;
114+
border: 3px solid var(--dark-bg);
115+
}
116+
::-webkit-scrollbar-thumb:hover {
117+
background-color: var(--accent-color);
118+
}
119+
::selection {
120+
background: var(--primary-color);
121+
color: #000;
122+
}
123+
::-moz-selection {
124+
background: var(--primary-color);
125+
color: #000;
126+
}
127+
</style>
82128
</head>
83129
<body class="d-flex flex-column min-vh-100">
84130

85131
<header class="py-4">
86132
<div class="container text-center">
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>
133+
<h1 class="display-5 fw-bold">
134+
<span style="color: #ccc;">Weap</span><span style="color: var(--primary-color);">Core</span> <small style="font-size: 0.5em; color: var(--text-color);">Konsol İstemcisi</small>
135+
</h1>
136+
<p class="lead" style="color: #5a2a44;">Minecraft AFK otomasyonunda çığır açmaya hazırlanan konsol tabanlı uygulama</p>
137+
<p><small style="color: #5a2a44;">Geliştiren: <a href="https://github.com/GweineTR" class="text-decoration-none" style="color: var(--accent-color);" target="_blank">@GweineTR</a></small></p>
90138
</div>
91139
</header>
92140

93141
<main class="flex-fill">
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">
142+
<section class="hero">
143+
<img src="https://img.pttavm.com/pimages/592/041/797/5a3e760655d11.png?v=201910111530" alt="Türk Bayrağı" style="position: absolute; top: -20px; right: 10px; height: 130px; z-index: 3;">
144+
<div class="video-bg">
145+
<div class="video-foreground">
146+
<iframe
147+
src="https://www.youtube.com/embed/wgsPrKTzm4w?autoplay=1&mute=1&controls=0&loop=1&playlist=wgsPrKTzm4w&modestbranding=1&rel=0&showinfo=0"
148+
frameborder="0"
149+
allow="autoplay; fullscreen"
150+
allowfullscreen
151+
></iframe>
152+
</div>
153+
</div>
154+
<div class="overlay text-center text-white" style="text-shadow: 0 0 6px rgba(0,0,0,0.8);">
99155
<h2 class="fw-bold mb-3" style="color: var(--primary-color);">Çok Yakında!</h2>
100156
<p class="mb-4">WeapCore konsol client, güçlü ve sade arayüzüyle Minecraft AFK işlemlerini otomatikleştiriyor.</p>
101157
<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>
158+
<a href="https://github.com/WeapCore/weapcore/releases" class="btn btn-primary btn-lg d-flex align-items-center">
159+
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/windows8/windows8-original.svg" alt="Windows" width="24" height="24" class="me-2">
160+
Windows
161+
</a>
162+
<a href="https://github.com/WeapCore/weapcore/releases" class="btn btn-primary btn-lg d-flex align-items-center">
163+
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/linux/linux-original.svg" alt="Linux" width="24" height="24" class="me-2">
164+
Linux
165+
</a>
166+
</div>
111167
</div>
112168
</section>
113169

114-
<section class="container mt-5">
170+
<section class="container mt-5 mb-5">
115171
<h3 class="mb-4 text-center" style="color: var(--accent-color);">Öne Çıkan Özellikler</h3>
116172
<div class="cards">
117173
<div class="card p-4">
118-
<h5 class="fw-semibold">Kolay Kurulum</h5>
174+
<h5 class="fw-semibold"><img src="https://cdn-icons-png.flaticon.com/512/1055/1055687.png" width="20" style="margin-right: 8px;">Kolay Kurulum</h5>
119175
<p>Tek komutla kurulum, zahmetsiz başlangıç.</p>
120176
</div>
121177
<div class="card p-4">
122-
<h5 class="fw-semibold">Hızlı Otomasyon</h5>
178+
<h5 class="fw-semibold"><img src="https://cdn-icons-png.flaticon.com/512/1041/1041916.png" width="20" style="margin-right: 8px;">Hızlı Otomasyon</h5>
123179
<p>Minimal gecikme ile sürekli AFK modu.</p>
124180
</div>
125181
<div class="card p-4">
126-
<h5 class="fw-semibold">Gelişmiş Loglama</h5>
182+
<h5 class="fw-semibold"><img src="https://cdn-icons-png.flaticon.com/512/1828/1828911.png" width="20" style="margin-right: 8px;">Gelişmiş Loglama</h5>
127183
<p>Yapılan işlemleri detaylı kayıt altına alır.</p>
128184
</div>
129185
<div class="card p-4">
130-
<h5 class="fw-semibold">Modüler Yapı</h5>
186+
<h5 class="fw-semibold"><img src="https://cdn-icons-png.flaticon.com/512/3649/3649469.png" width="20" style="margin-right: 8px;">Modüler Yapı</h5>
131187
<p>Yeni özellik eklentilerine açık, genişletilebilir mimari.</p>
132188
</div>
133189
</div>
134190
</section>
135191
</main>
136192

137-
<footer class="text-center text-light py-3 mt-auto">
193+
<footer class="text-center py-3 mt-auto" style="color: #5a2a44;">
138194
<div class="container">
139195
<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>
140196
</div>
141197
</footer>
142198

143-
<!-- Bootstrap JS Bundle -->
144-
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
199+
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
145200
</body>
146201
</html>

0 commit comments

Comments
 (0)