This repository was archived by the owner on Aug 6, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
307 lines (265 loc) · 15.2 KB
/
Copy pathindex.html
File metadata and controls
307 lines (265 loc) · 15.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CodxVoid - Open Source Research & AI Development</title>
<link rel="icon" type="x-icon" href="IMG/fav/favicon.ico">
<!-- SEO & Social Meta Tags -->
<meta name="description" content="CodxVoid is an open-source research and development community focused on AI, cybersecurity, and coding innovation.">
<meta name="keywords" content="open-source, AI, cybersecurity, coding, developers, LLM, machine learning, technology, research">
<meta name="author" content="CodxVoid">
<link rel="canonical" href="https://codxvoid.github.io/">
<!-- Open Graph for Social Media -->
<meta property="og:title" content="CodxVoid - Open Source Research & AI Development">
<meta property="og:description" content="Join CodxVoid, an open-source community driving innovation in AI, cybersecurity, and coding development.">
<meta property="og:image" content="https://codxvoid.github.io/IMG/favico.jpg">
<meta property="og:url" content="https://codxvoid.github.io/">
<meta property="og:type" content="website">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="CodxVoid - Open Source Research & AI Development">
<meta name="twitter:description" content="Join CodxVoid, an open-source community driving innovation in AI, cybersecurity, and coding development.">
<meta name="twitter:image" content="https://codxvoid.github.io/IMG/logo.svg">
<meta name="twitter:site" content="@codxvoid">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "CodxVoid",
"url": "https://codxvoid.github.io/",
"logo": "https://codxvoid.github.io/IMG/logo.svg",
"description": "An open-source research and development community focused on AI, cybersecurity, and coding innovation.",
"sameAs": [
"https://github.com/codxvoid",
"https://twitter.com/codxvoid",
"https://youtube.com/@codxvoid"
]
}</script>
<!-- TailwindCSS CDN -->
<script src="https://cdn.tailwindcss.com"></script>
<style>
html {
scroll-behavior: smooth;
}
/* Banner styling */
#archive-banner {
top: 0;
width: 100%;
z-index: 100;
}
.marquee {
display: inline-block;
white-space: nowrap;
padding-left: 100%;
animation: marquee 15s linear infinite;
}
@keyframes marquee {
0% { transform: translateX(0); }
100% { transform: translateX(-100%); }
}
.typewriter-text::after {
content: "|";
display: inline-block;
animation: blink 0.8s infinite;
}
@keyframes blink {
50% { opacity: 0; }
}
body {
transition: background 0.5s ease-in-out;
}
.fade-in {
opacity: 0;
transform: translateY(20px);
transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-in.visible {
opacity: 1;
transform: translateY(0);
}
.card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
transform: scale(1.05);
box-shadow: 0 10px 20px rgba(0, 0, 255, 0.3);
}
.scrolled {
background: rgba(30, 30, 30, 0.9);
transition: background 0.5s ease-in-out;
}
</style>
</head>
<body class="bg-gray-900 text-white font-sans">
<div id="archive-banner" class="bg-yellow-300 text-gray-900 text-center py-2 w-full fixed top-0 z-50 overflow-hidden">
<div class="marquee">
Archived grave repo: <a href="https://github.com/codxvoid/CodxWebv1" class="underline hover:text-blue-600">codxvoid/CodxWebv1</a>
</div>
</div>
<nav id="navbar" class="bg-gray-800 p-4 fixed w-full z-40 top-[40px] shadow-lg transition">
<div class="container mx-auto flex justify-between items-center">
<a href="#" class="text-2xl font-bold text-blue-400">CodxVoid</a>
<button class="md:hidden text-white" onclick="toggleMenu()">☰</button>
<div class="hidden md:flex space-x-6">
<a href="#about" class="hover:text-blue-400">About</a>
<a href="#history" class="hover:text-blue-400">History</a>
<a href="#values" class="hover:text-blue-400">Vision</a>
<a href="#contribute" class="hover:text-blue-400">Contribute</a>
<a href="#connect" class="hover:text-blue-400">Get Involved</a>
</div>
</div>
<div id="mobile-menu" class="hidden md:hidden bg-gray-900 p-4">
<a href="#about" class="block py-2 text-white hover:text-blue-400">About</a>
<a href="#history" class="block py-2 text-white hover:text-blue-400">History</a>
<a href="#values" class="block py-2 text-white hover:text-blue-400">Vision</a>
<a href="#contribute" class="block py-2 text-white hover:text-blue-400">Contribute</a>
<a href="#connect" class="block py-2 text-white hover:text-blue-400">Get Involved</a>
</div>
</nav>
<header class="h-screen flex flex-col items-center justify-center text-center bg-gray-900 px-6">
<h1 id="typewriter" class="text-4xl md:text-6xl font-extrabold text-blue-400 typewriter-text"></h1>
<p class="mt-4 text-lg md:text-xl text-gray-300">Empowering Open-Source Research, AI, and Cybersecurity.</p>
<a href="#about" class="mt-6 bg-blue-500 hover:bg-blue-600 text-white px-6 py-3 rounded-full text-lg transition">
Learn More
</a>
</header>
<section id="about" class="py-16 px-6 text-center bg-gray-800 fade-in">
<h2 class="text-3xl font-bold text-blue-400">Welcome to CodxVoid</h2>
<p class="mt-4 text-gray-300">An open-source community solving coding problems and building advanced technology.</p>
<div class="mt-8 flex justify-center">
<div class="bg-gray-800 p-6 rounded-lg shadow-lg card max-w-2xl text-center">
<h3 class="text-2xl font-bold text-blue-400">Overview</h3>
<p class="mt-2 text-gray-300">CodxVoid is an open-source research and development organization dedicated to advancing software and related technologies. We provide a collaborative platform for developers, researchers, and tech enthusiasts to contribute to cutting-edge projects in software engineering, AI, blockchain, cybersecurity, and more.
Our mission is to bridge the gap between research and real-world applications by fostering innovation, knowledge sharing, and open collaboration. By leveraging the power of open-source, we aim to drive technological progress and build solutions that shape the future of software development.
Join us in pushing the boundaries of tech! 🚀💡</p>
</div>
</div>
</section>
<!-- Cards Section -->
<section id="history" class="py-16 px-6 text-center bg-gray-900 fade-in">
<h2 class="text-3xl font-bold text-blue-400">The Evolution of CodxVoid</h2>
<p class="mt-4 text-gray-300">CodxVoid, formerly CodzLab, evolved to represent infinite possibilities in coding.</p>
<div class="mt-8 grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="bg-gray-800 p-6 rounded-lg shadow-lg card">
<h3 class="text-2xl font-bold text-blue-400">Cod</h3>
<p class="mt-2 text-gray-300">Symbolizes our foundation: coding and development.</p>
</div>
<div class="bg-gray-800 p-6 rounded-lg shadow-lg card">
<h3 class="text-2xl font-bold text-blue-400">X</h3>
<p class="mt-2 text-gray-300">Represents limitless innovation and infinite growth.</p>
</div>
<div class="bg-gray-800 p-6 rounded-lg shadow-lg card">
<h3 class="text-2xl font-bold text-blue-400">Void</h3>
<p class="mt-2 text-gray-300">Signifies openness and freedom in technology.</p>
</div>
</div>
</section>
<!-- vision -->
<section id="values" class="py-16 px-6 text-center bg-gray-900 fade-in">
<h2 class="text-3xl font-bold text-blue-400">Our Vision & Values</h2>
<div class="mt-8 grid grid-cols-1 md:grid-cols-2 gap-6">
<div class="bg-gray-800 p-6 rounded-lg shadow-lg card">
<h3 class="text-2xl font-bold text-blue-400">Vision</h3>
<p class="mt-2 text-gray-300">Drive innovation in coding, AI, cybersecurity, and open-source technology.</p>
</div>
<div class="bg-gray-800 p-6 rounded-lg shadow-lg card">
<h3 class="text-2xl font-bold text-blue-400">Values</h3>
<p class="mt-2 text-gray-300">Open Source, Creativity, and Collaboration.</p>
</div>
</div>
</section>
<section id="contribute" class="py-16 px-6 text-center bg-gray-800 fade-in">
<h2 class="text-3xl font-bold text-blue-400">How to Contribute</h2>
<div class="mt-8 grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="bg-gray-900 p-6 rounded-lg shadow-lg card">
<h3 class="text-2xl font-bold text-blue-400">1. Fork & Clone</h3>
<p class="mt-2 text-gray-300">Create your copy of the repository and start coding.</p>
</div>
<div class="bg-gray-900 p-6 rounded-lg shadow-lg card">
<h3 class="text-2xl font-bold text-blue-400">2. Feature Branch</h3>
<p class="mt-2 text-gray-300">Work on a new branch to keep changes organized.</p>
</div>
<div class="bg-gray-900 p-6 rounded-lg shadow-lg card">
<h3 class="text-2xl font-bold text-blue-400">3. Submit a PR</h3>
<p class="mt-2 text-gray-300">Submit a Pull Request explaining your contribution.</p>
</div>
</div>
</section>
<section id="connect" class="py-16 px-6 text-center bg-gray-900 fade-in">
<h2 class="text-3xl font-bold text-blue-400">Stay Connected</h2>
<p class="mt-4 text-gray-300">Follow us and contribute to our projects.</p>
<div class="mt-4 flex justify-center space-x-6">
<a href="https://github.com/codxvoid" class="text-xl text-white hover:text-blue-400" target="_blank">
GitHub
</a>
<a href="https://twitter.com/codxvoid" class="text-xl text-white hover:text-blue-400" target="_blank">
Twitter
</a>
<a href="https://linkedin.com/company/codxvoid" class="text-xl text-white hover:text-blue-400" target="_blank">
LinkedIn
</a>
</div>
</section>
<footer class="py-6 bg-gray-900 text-center text-gray-400 flex flex-col items-center justify-center">
<img src="IMG/logo.svg" alt="CodxVoid Logo" class="h-12 mb-2 rounded-lg">
<div class="flex space-x-4 mt-3">
<!-- GitHub -->
<a href="https://github.com/codxvoid" target="_blank" class="hover:text-blue-400">
<svg class="w-6 h-6 text-white hover:text-blue-400" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24">
<path d="M12 0C5.372 0 0 5.373 0 12c0 5.303 3.438 9.8 8.207 11.387.6.11.793-.26.793-.577v-2.234c-3.338.726-4.042-1.61-4.042-1.61-.547-1.387-1.336-1.755-1.336-1.755-1.09-.744.084-.729.084-.729 1.205.084 1.84 1.236 1.84 1.236 1.07 1.834 2.805 1.304 3.49.998.11-.775.42-1.304.764-1.604-2.665-.303-5.466-1.334-5.466-5.932 0-1.31.468-2.38 1.236-3.22-.124-.303-.536-1.526.116-3.176 0 0 1.008-.322 3.3 1.23a11.57 11.57 0 013.002-.404c1.018.005 2.046.137 3.003.404 2.292-1.553 3.298-1.23 3.298-1.23.654 1.65.242 2.873.118 3.176.77.84 1.234 1.91 1.234 3.22 0 4.61-2.805 5.625-5.478 5.921.43.372.82 1.103.82 2.223v3.293c0 .32.192.693.8.576C20.564 21.796 24 17.3 24 12c0-6.627-5.373-12-12-12z"/>
</svg>
</a>
<!-- Twitter -->
<a href="https://twitter.com/codxvoid" target="_blank" class="hover:text-blue-400">
<svg class="w-6 h-6 text-white hover:text-blue-400" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24">
<path d="M23.643 4.937c-.835.37-1.732.62-2.675.733a4.69 4.69 0 002.048-2.592 9.404 9.404 0 01-2.975 1.136 4.684 4.684 0 00-7.97 4.27 13.287 13.287 0 01-9.647-4.89 4.687 4.687 0 001.45 6.247 4.656 4.656 0 01-2.12-.586c-.052 2.28 1.579 4.42 3.946 4.906a4.682 4.682 0 01-2.113.08 4.689 4.689 0 004.385 3.277A9.386 9.386 0 010 19.54a13.285 13.285 0 007.163 2.097c8.59 0 13.293-7.114 13.293-13.293 0-.202 0-.403-.014-.603A9.453 9.453 0 0024 4.59a9.315 9.315 0 01-2.357.646z"/>
</svg>
</a>
<!-- LinkedIn -->
<a href="https://linkedin.com/company/codxvoid" target="_blank" class="hover:text-blue-400">
<svg class="w-6 h-6 text-white hover:text-blue-400" xmlns="http://www.w3.org/2000/svg" fill="currentColor" viewBox="0 0 24 24">
<path d="M22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.226.792 24 1.771 24h20.451c.98 0 1.778-.774 1.778-1.729V1.729C24 .774 23.205 0 22.225 0zM7.191 20.452H3.56V9h3.631v11.452zM5.375 7.502c-1.156 0-2.097-.937-2.097-2.097 0-1.16.941-2.097 2.097-2.097 1.16 0 2.097.937 2.097 2.097 0 1.16-.937 2.097-2.097 2.097zm14.986 12.95h-3.631v-5.568c0-1.329-.025-3.042-1.852-3.042-1.852 0-2.137 1.447-2.137 2.941v5.669h-3.631V9h3.484v1.564h.049c.487-.922 1.678-1.893 3.454-1.893 3.689 0 4.372 2.428 4.372 5.584v6.197z"/>
</svg>
</a>
</div>
© 2025 CodxVoid | Contact:
<a href="mailto:devsorg@hotmail.com" class="text-blue-400">devsorg@hotmail.com</a>
</footer>
<script>
// Typewriter Effect
const typewriterText = "Code Infinite, Think Void";
let index = 0;
function type() {
document.getElementById("typewriter").textContent = typewriterText.substring(0, index);
index = (index + 1) % (typewriterText.length + 1);
setTimeout(type, 150);
}
type();
// Scroll Animations
document.addEventListener("DOMContentLoaded", function() {
const elements = document.querySelectorAll(".fade-in");
const observer = new IntersectionObserver(entries => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add("visible");
}
});
});
elements.forEach(element => observer.observe(element));
window.addEventListener("scroll", function() {
document.body.style.backgroundColor = window.scrollY > 200 ? "#111" : "#222";
document.getElementById("navbar").classList.toggle("scrolled", window.scrollY > 50);
});
});
function toggleMenu() {
const menu = document.getElementById("mobile-menu");
menu.classList.toggle("hidden");
}
document.querySelectorAll("#mobile-menu a").forEach(link => {
link.addEventListener("click", () => {
document.getElementById("mobile-menu").classList.add("hidden");
});
});
</script>
</body>
</html>