|
1 | 1 | <!DOCTYPE html> |
2 | 2 | <html lang="tr"> |
3 | 3 | <head> |
| 4 | + <meta name="theme-color" content="#e48fb2"> |
4 | 5 | <meta charset="UTF-8"> |
5 | 6 | <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
6 | 7 | <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"> |
10 | 10 | <style> |
11 | 11 | :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 | +} |
18 | 18 | 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 | +} |
23 | 24 | header { |
24 | | - background: var(--light-bg); |
25 | | - } |
| 25 | + background: #f7d7e2; |
| 26 | + box-shadow: 0 2px 4px rgba(0,0,0,0.05); |
| 27 | +} |
26 | 28 | .btn-primary { |
27 | 29 | background-color: var(--primary-color); |
28 | 30 | border-color: var(--primary-color); |
|
34 | 36 | } |
35 | 37 | .hero { |
36 | 38 | position: relative; |
37 | | - padding: 6rem 0; |
38 | | - color: #ffffff; |
| 39 | + height: 100vh; |
39 | 40 | overflow: hidden; |
40 | 41 | } |
41 | | - .hero video { |
| 42 | + .hero iframe { |
42 | 43 | position: absolute; |
43 | 44 | top: 0; left: 0; |
44 | 45 | width: 100%; height: 100%; |
45 | | - object-fit: cover; |
| 46 | + border: none; |
46 | 47 | z-index: 0; |
47 | 48 | } |
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 | +} |
60 | 61 | .cards { |
61 | 62 | display: grid; |
62 | 63 | grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); |
63 | 64 | gap: 1.5rem; |
64 | 65 | margin-top: 2rem; |
65 | 66 | } |
66 | 67 | .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 | +} |
74 | 76 | .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 | +} |
78 | 80 | 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; |
80 | 92 | } |
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> |
82 | 128 | </head> |
83 | 129 | <body class="d-flex flex-column min-vh-100"> |
84 | 130 |
|
85 | 131 | <header class="py-4"> |
86 | 132 | <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> |
90 | 138 | </div> |
91 | 139 | </header> |
92 | 140 |
|
93 | 141 | <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);"> |
99 | 155 | <h2 class="fw-bold mb-3" style="color: var(--primary-color);">Çok Yakında!</h2> |
100 | 156 | <p class="mb-4">WeapCore konsol client, güçlü ve sade arayüzüyle Minecraft AFK işlemlerini otomatikleştiriyor.</p> |
101 | 157 | <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> |
111 | 167 | </div> |
112 | 168 | </section> |
113 | 169 |
|
114 | | - <section class="container mt-5"> |
| 170 | + <section class="container mt-5 mb-5"> |
115 | 171 | <h3 class="mb-4 text-center" style="color: var(--accent-color);">Öne Çıkan Özellikler</h3> |
116 | 172 | <div class="cards"> |
117 | 173 | <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> |
119 | 175 | <p>Tek komutla kurulum, zahmetsiz başlangıç.</p> |
120 | 176 | </div> |
121 | 177 | <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> |
123 | 179 | <p>Minimal gecikme ile sürekli AFK modu.</p> |
124 | 180 | </div> |
125 | 181 | <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> |
127 | 183 | <p>Yapılan işlemleri detaylı kayıt altına alır.</p> |
128 | 184 | </div> |
129 | 185 | <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> |
131 | 187 | <p>Yeni özellik eklentilerine açık, genişletilebilir mimari.</p> |
132 | 188 | </div> |
133 | 189 | </div> |
134 | 190 | </section> |
135 | 191 | </main> |
136 | 192 |
|
137 | | - <footer class="text-center text-light py-3 mt-auto"> |
| 193 | + <footer class="text-center py-3 mt-auto" style="color: #5a2a44;"> |
138 | 194 | <div class="container"> |
139 | 195 | <small>© 2025 WeapCore | Geliştiren: <a href="https://github.com/GweineTR" class="text-decoration-none" style="color: var(--accent-color);" target="_blank">@GweineTR</a></small> |
140 | 196 | </div> |
141 | 197 | </footer> |
142 | 198 |
|
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> |
145 | 200 | </body> |
146 | 201 | </html> |
0 commit comments