Spaces:
Running
Running
so there is the logo, and the CEO are JOE MUNENE, AND ISACC..
Browse files- components/footer.js +2 -2
- components/navbar.js +3 -4
- index.html +40 -7
- style.css +35 -1
components/footer.js
CHANGED
|
@@ -22,10 +22,10 @@ class CustomFooter extends HTMLElement {
|
|
| 22 |
<div class="grid grid-cols-1 md:grid-cols-4 gap-12">
|
| 23 |
<div>
|
| 24 |
<div class="flex items-center mb-6">
|
| 25 |
-
<
|
| 26 |
<span class="text-xl font-bold text-white">CodeCraft Complex</span>
|
| 27 |
</div>
|
| 28 |
-
|
| 29 |
<div class="flex space-x-4">
|
| 30 |
<a href="#" class="social-icon text-gray-400 hover:text-primary-500">
|
| 31 |
<i data-feather="twitter"></i>
|
|
|
|
| 22 |
<div class="grid grid-cols-1 md:grid-cols-4 gap-12">
|
| 23 |
<div>
|
| 24 |
<div class="flex items-center mb-6">
|
| 25 |
+
<img src="https://huggingface.co/spaces/Ghostgim/codecraft-complex-devs/resolve/main/images/Screenshot%202025-11-02%20064654.png" alt="CodeCraft Complex Logo" class="w-10 h-10 mr-3 glow-effect">
|
| 26 |
<span class="text-xl font-bold text-white">CodeCraft Complex</span>
|
| 27 |
</div>
|
| 28 |
+
<p class="mb-6">Full-spectrum digital solutions for businesses of all sizes.</p>
|
| 29 |
<div class="flex space-x-4">
|
| 30 |
<a href="#" class="social-icon text-gray-400 hover:text-primary-500">
|
| 31 |
<i data-feather="twitter"></i>
|
components/navbar.js
CHANGED
|
@@ -38,11 +38,10 @@ class CustomNavbar extends HTMLElement {
|
|
| 38 |
<nav class="navbar fixed w-full z-50 px-6 py-4">
|
| 39 |
<div class="max-w-7xl mx-auto flex justify-between items-center">
|
| 40 |
<a href="/" class="flex items-center">
|
| 41 |
-
<
|
| 42 |
-
<span class="text-xl font-bold text-
|
| 43 |
</a>
|
| 44 |
-
|
| 45 |
-
<div class="hidden md:flex items-center space-x-8">
|
| 46 |
<a href="/" class="nav-link text-gray-600 hover:text-primary-500">Home</a>
|
| 47 |
<a href="#services" class="nav-link text-gray-600 hover:text-primary-500">Services</a>
|
| 48 |
<a href="#process" class="nav-link text-gray-600 hover:text-primary-500">Process</a>
|
|
|
|
| 38 |
<nav class="navbar fixed w-full z-50 px-6 py-4">
|
| 39 |
<div class="max-w-7xl mx-auto flex justify-between items-center">
|
| 40 |
<a href="/" class="flex items-center">
|
| 41 |
+
<img src="https://huggingface.co/spaces/Ghostgim/codecraft-complex-devs/resolve/main/images/Screenshot%202025-11-02%20064654.png" alt="CodeCraft Complex Logo" class="w-10 h-10 mr-3 glow-effect">
|
| 42 |
+
<span class="text-xl font-bold text-white bg-clip-text text-transparent bg-gradient-to-r from-primary-100 to-secondary-500">CodeCraft Complex</span>
|
| 43 |
</a>
|
| 44 |
+
<div class="hidden md:flex items-center space-x-8">
|
|
|
|
| 45 |
<a href="/" class="nav-link text-gray-600 hover:text-primary-500">Home</a>
|
| 46 |
<a href="#services" class="nav-link text-gray-600 hover:text-primary-500">Services</a>
|
| 47 |
<a href="#process" class="nav-link text-gray-600 hover:text-primary-500">Process</a>
|
index.html
CHANGED
|
@@ -3,8 +3,8 @@
|
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
-
<title>CodeCraft Complex
|
| 7 |
-
|
| 8 |
<link rel="stylesheet" href="style.css">
|
| 9 |
<script src="https://cdn.tailwindcss.com"></script>
|
| 10 |
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
|
@@ -41,9 +41,9 @@
|
|
| 41 |
<!-- Hero Section -->
|
| 42 |
<section class="relative bg-gradient-to-r from-primary-500 to-secondary-500 text-white py-24 px-4 sm:px-6 lg:px-8">
|
| 43 |
<div class="max-w-7xl mx-auto text-center">
|
| 44 |
-
<h1 class="text-4xl md:text-6xl font-bold mb-6">
|
| 45 |
-
<p class="text-xl md:text-2xl max-w-3xl mx-auto mb-8">
|
| 46 |
-
|
| 47 |
<a href="#services" class="bg-white text-primary-700 hover:bg-gray-100 font-semibold py-3 px-8 rounded-lg transition duration-300">
|
| 48 |
Explore Services
|
| 49 |
</a>
|
|
@@ -200,10 +200,43 @@
|
|
| 200 |
</div>
|
| 201 |
</div>
|
| 202 |
</section>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 203 |
|
| 204 |
<!-- Testimonials -->
|
| 205 |
-
<section class="py-20 px-4 sm:px-6 lg:px-8 bg-primary-700 text-white">
|
| 206 |
-
|
| 207 |
<div class="text-center mb-16">
|
| 208 |
<h2 class="text-3xl md:text-4xl font-bold mb-4">Trusted By Industry Leaders</h2>
|
| 209 |
<p class="text-lg text-primary-100 max-w-3xl mx-auto">Don't just take our word for it - hear what our clients have to say.</p>
|
|
|
|
| 3 |
<head>
|
| 4 |
<meta charset="UTF-8">
|
| 5 |
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>CodeCraft Complex | Futuristic Digital Solutions</title>
|
| 7 |
+
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
|
| 8 |
<link rel="stylesheet" href="style.css">
|
| 9 |
<script src="https://cdn.tailwindcss.com"></script>
|
| 10 |
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
|
|
|
| 41 |
<!-- Hero Section -->
|
| 42 |
<section class="relative bg-gradient-to-r from-primary-500 to-secondary-500 text-white py-24 px-4 sm:px-6 lg:px-8">
|
| 43 |
<div class="max-w-7xl mx-auto text-center">
|
| 44 |
+
<h1 class="text-4xl md:text-6xl font-bold mb-6 bg-clip-text text-transparent bg-gradient-to-r from-primary-100 via-primary-500 to-secondary-500">Shaping The Digital Future</h1>
|
| 45 |
+
<p class="text-xl md:text-2xl max-w-3xl mx-auto mb-8 text-white/90">Pioneering digital solutions powered by cutting-edge technology and visionary leadership.</p>
|
| 46 |
+
<div class="flex flex-col sm:flex-row justify-center gap-4">
|
| 47 |
<a href="#services" class="bg-white text-primary-700 hover:bg-gray-100 font-semibold py-3 px-8 rounded-lg transition duration-300">
|
| 48 |
Explore Services
|
| 49 |
</a>
|
|
|
|
| 200 |
</div>
|
| 201 |
</div>
|
| 202 |
</section>
|
| 203 |
+
<!-- Leadership Section -->
|
| 204 |
+
<section class="py-20 px-4 sm:px-6 lg:px-8 bg-gray-900 text-white">
|
| 205 |
+
<div class="max-w-7xl mx-auto">
|
| 206 |
+
<div class="text-center mb-16">
|
| 207 |
+
<h2 class="text-3xl md:text-4xl font-bold mb-4 bg-clip-text text-transparent bg-gradient-to-r from-primary-500 to-secondary-500">Visionary Leadership</h2>
|
| 208 |
+
<p class="text-lg text-gray-400 max-w-3xl mx-auto">Driving innovation with a bold vision for the future</p>
|
| 209 |
+
</div>
|
| 210 |
+
|
| 211 |
+
<div class="grid grid-cols-1 md:grid-cols-2 gap-12">
|
| 212 |
+
<div class="bg-gradient-to-br from-gray-800 to-gray-900 p-8 rounded-xl border border-gray-700 hover:border-primary-500 transition-all duration-300">
|
| 213 |
+
<div class="flex flex-col md:flex-row items-center gap-6">
|
| 214 |
+
<img src="https://static.photos/technology/200x200/1" alt="Joe Munene" class="w-32 h-32 rounded-full object-cover border-4 border-primary-500">
|
| 215 |
+
<div>
|
| 216 |
+
<h3 class="text-2xl font-bold mb-1">Joe Munene</h3>
|
| 217 |
+
<p class="text-primary-400 mb-3">CEO & Co-Founder</p>
|
| 218 |
+
<p class="text-gray-300">Visionary leader with 15+ years experience in emerging technologies and digital transformation.</p>
|
| 219 |
+
</div>
|
| 220 |
+
</div>
|
| 221 |
+
</div>
|
| 222 |
+
|
| 223 |
+
<div class="bg-gradient-to-br from-gray-800 to-gray-900 p-8 rounded-xl border border-gray-700 hover:border-secondary-500 transition-all duration-300">
|
| 224 |
+
<div class="flex flex-col md:flex-row items-center gap-6">
|
| 225 |
+
<img src="https://static.photos/technology/200x200/2" alt="Isaac" class="w-32 h-32 rounded-full object-cover border-4 border-secondary-500">
|
| 226 |
+
<div>
|
| 227 |
+
<h3 class="text-2xl font-bold mb-1">Isaac</h3>
|
| 228 |
+
<p class="text-secondary-400 mb-3">CTO & Co-Founder</p>
|
| 229 |
+
<p class="text-gray-300">Technology pioneer specializing in AI, blockchain, and next-gen web architectures.</p>
|
| 230 |
+
</div>
|
| 231 |
+
</div>
|
| 232 |
+
</div>
|
| 233 |
+
</div>
|
| 234 |
+
</div>
|
| 235 |
+
</section>
|
| 236 |
|
| 237 |
<!-- Testimonials -->
|
| 238 |
+
<section class="py-20 px-4 sm:px-6 lg:px-8 bg-gradient-to-r from-gray-900 to-primary-700 text-white">
|
| 239 |
+
<div class="max-w-7xl mx-auto">
|
| 240 |
<div class="text-center mb-16">
|
| 241 |
<h2 class="text-3xl md:text-4xl font-bold mb-4">Trusted By Industry Leaders</h2>
|
| 242 |
<p class="text-lg text-primary-100 max-w-3xl mx-auto">Don't just take our word for it - hear what our clients have to say.</p>
|
style.css
CHANGED
|
@@ -1,8 +1,42 @@
|
|
| 1 |
-
|
|
|
|
| 2 |
html {
|
| 3 |
scroll-behavior: smooth;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
}
|
| 5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
/* Custom animations */
|
| 7 |
@keyframes fadeIn {
|
| 8 |
from { opacity: 0; transform: translateY(20px); }
|
|
|
|
| 1 |
+
|
| 2 |
+
/* Futuristic base styles */
|
| 3 |
html {
|
| 4 |
scroll-behavior: smooth;
|
| 5 |
+
background-color: #0f172a;
|
| 6 |
+
}
|
| 7 |
+
|
| 8 |
+
body {
|
| 9 |
+
background: radial-gradient(circle at 10% 20%, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 1) 90%);
|
| 10 |
+
color: #e2e8f0;
|
| 11 |
+
}
|
| 12 |
+
|
| 13 |
+
/* Glow effects */
|
| 14 |
+
.glow-effect {
|
| 15 |
+
box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
|
| 16 |
+
transition: box-shadow 0.3s ease;
|
| 17 |
}
|
| 18 |
|
| 19 |
+
.glow-effect:hover {
|
| 20 |
+
box-shadow: 0 0 25px rgba(16, 185, 129, 0.8);
|
| 21 |
+
}
|
| 22 |
+
|
| 23 |
+
/* Futuristic borders */
|
| 24 |
+
.futuristic-border {
|
| 25 |
+
position: relative;
|
| 26 |
+
}
|
| 27 |
+
|
| 28 |
+
.futuristic-border::after {
|
| 29 |
+
content: '';
|
| 30 |
+
position: absolute;
|
| 31 |
+
inset: 0;
|
| 32 |
+
border-radius: inherit;
|
| 33 |
+
padding: 1px;
|
| 34 |
+
background: linear-gradient(135deg, #10b981, #6366f1);
|
| 35 |
+
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
|
| 36 |
+
-webkit-mask-composite: xor;
|
| 37 |
+
mask-composite: exclude;
|
| 38 |
+
pointer-events: none;
|
| 39 |
+
}
|
| 40 |
/* Custom animations */
|
| 41 |
@keyframes fadeIn {
|
| 42 |
from { opacity: 0; transform: translateY(20px); }
|