Spaces:
Running
Running
File size: 13,916 Bytes
97f71e2 | 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 | <!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CodeCraft Complex Devs | Full-Spectrum Digital Solutions</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: {
100: '#d1fae5',
500: '#10b981',
700: '#047857',
},
secondary: {
100: '#e0e7ff',
500: '#6366f1',
700: '#4338ca',
}
}
}
}
}
</script>
<script src="components/navbar.js"></script>
<script src="components/service-card.js"></script>
<script src="components/cta-banner.js"></script>
<script src="components/footer.js"></script>
</head>
<body class="bg-gray-50 text-gray-800 font-sans antialiased">
<custom-navbar></custom-navbar>
<main>
<!-- Hero Section -->
<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">
<div class="max-w-7xl mx-auto text-center">
<h1 class="text-4xl md:text-6xl font-bold mb-6">Crafting Digital Excellence</h1>
<p class="text-xl md:text-2xl max-w-3xl mx-auto mb-8">Full-spectrum digital solutions tailored to your business needs through our 15 specialized services.</p>
<div class="flex flex-col sm:flex-row justify-center gap-4">
<a href="#services" class="bg-white text-primary-700 hover:bg-gray-100 font-semibold py-3 px-8 rounded-lg transition duration-300">
Explore Services
</a>
<a href="#contact" class="bg-transparent border-2 border-white hover:bg-white hover:text-primary-700 font-semibold py-3 px-8 rounded-lg transition duration-300">
Get in Touch
</a>
</div>
</div>
<div class="absolute bottom-0 left-0 right-0 h-16 bg-white/10 backdrop-blur-sm"></div>
</section>
<!-- Services Section -->
<section id="services" class="py-20 px-4 sm:px-6 lg:px-8 bg-white">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Our Comprehensive Services</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">From conception to execution and beyond, we cover every aspect of digital presence and functionality.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<service-card
icon="globe"
title="Web Design"
description="Beautiful, intuitive interfaces that engage users and reflect your brand identity."
></service-card>
<service-card
icon="code"
title="Web Development"
description="Robust, scalable websites built with modern technologies and best practices."
></service-card>
<service-card
icon="cpu"
title="Software Development"
description="Custom software solutions designed to streamline your business operations."
></service-card>
<service-card
icon="joystick"
title="Game Development"
description="Immersive gaming experiences across multiple platforms and devices."
></service-card>
<service-card
icon="activity"
title="AI Integration"
description="Smart automation and intelligence infused into your digital products."
></service-card>
<service-card
icon="brain"
title="AI Engineering"
description="Custom AI models and machine learning solutions for your specific needs."
></service-card>
<service-card
icon="link"
title="API Integration"
description="Seamless connectivity between your systems and third-party services."
></service-card>
<service-card
icon="shield"
title="Cybersecurity"
description="Comprehensive protection for your digital assets and user data."
></service-card>
<service-card
icon="cloud"
title="Cloud Services"
description="Migration, setup, and management of cloud infrastructure."
></service-card>
<service-card
icon="zap"
title="WebAssembly"
description="High-performance web applications with near-native speed."
></service-card>
<service-card
icon="trending-up"
title="Performance Optimization"
description="Faster loading, better SEO, and improved user experience."
></service-card>
<service-card
icon="repeat"
title="Business Automation"
description="Streamline workflows with no-code/low-code solutions."
></service-card>
<service-card
icon="globe"
title="Localization"
description="Multi-language support for global audience reach."
></service-card>
<service-card
icon="tool"
title="Maintenance Plans"
description="Ongoing support to keep your digital products running smoothly."
></service-card>
<service-card
icon="smartphone"
title="App Development"
description="Cross-platform mobile applications for iOS and Android."
></service-card>
</div>
</div>
</section>
<!-- Process Section -->
<section class="py-20 px-4 sm:px-6 lg:px-8 bg-gray-50">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Our Proven Process</h2>
<p class="text-lg text-gray-600 max-w-3xl mx-auto">A structured approach to delivering exceptional results every time.</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-4 gap-8">
<div class="bg-white p-8 rounded-xl shadow-md text-center">
<div class="bg-primary-100 w-16 h-16 mx-auto rounded-full flex items-center justify-center mb-4">
<i data-feather="search" class="text-primary-700 w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Discovery</h3>
<p class="text-gray-600">We analyze your needs and goals to create a tailored solution.</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-md text-center">
<div class="bg-primary-100 w-16 h-16 mx-auto rounded-full flex items-center justify-center mb-4">
<i data-feather="layout" class="text-primary-700 w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Planning</h3>
<p class="text-gray-600">Structured roadmap with milestones and deliverables.</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-md text-center">
<div class="bg-primary-100 w-16 h-16 mx-auto rounded-full flex items-center justify-center mb-4">
<i data-feather="code" class="text-primary-700 w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Execution</h3>
<p class="text-gray-600">Agile development with regular progress updates.</p>
</div>
<div class="bg-white p-8 rounded-xl shadow-md text-center">
<div class="bg-primary-100 w-16 h-16 mx-auto rounded-full flex items-center justify-center mb-4">
<i data-feather="check-circle" class="text-primary-700 w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold mb-2">Delivery</h3>
<p class="text-gray-600">Thorough testing and deployment with ongoing support.</p>
</div>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="py-20 px-4 sm:px-6 lg:px-8 bg-primary-700 text-white">
<div class="max-w-7xl mx-auto">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Trusted By Industry Leaders</h2>
<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>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="bg-white/10 p-8 rounded-xl backdrop-blur-sm">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-primary-500 flex items-center justify-center mr-4">
<span class="text-xl font-bold">AS</span>
</div>
<div>
<h4 class="font-semibold">Alex Smith</h4>
<p class="text-primary-200 text-sm">CTO, TechNova</p>
</div>
</div>
<p class="italic">"The AI integration completely transformed our customer service operations. The Complex Devs team delivered beyond our expectations."</p>
</div>
<div class="bg-white/10 p-8 rounded-xl backdrop-blur-sm">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-primary-500 flex items-center justify-center mr-4">
<span class="text-xl font-bold">MJ</span>
</div>
<div>
<h4 class="font-semibold">Maria Johnson</h4>
<p class="text-primary-200 text-sm">CEO, Global Retail</p>
</div>
</div>
<p class="italic">"Their cloud migration expertise saved us thousands in infrastructure costs while improving performance dramatically."</p>
</div>
<div class="bg-white/10 p-8 rounded-xl backdrop-blur-sm">
<div class="flex items-center mb-4">
<div class="w-12 h-12 rounded-full bg-primary-500 flex items-center justify-center mr-4">
<span class="text-xl font-bold">DR</span>
</div>
<div>
<h4 class="font-semibold">David Rodriguez</h4>
<p class="text-primary-200 text-sm">Founder, FinTech Startup</p>
</div>
</div>
<p class="italic">"The security audit uncovered vulnerabilities we didn't even know existed. Their expertise is unparalleled."</p>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<custom-cta-banner
title="Ready to Transform Your Digital Presence?"
button-text="Schedule Consultation"
link="#contact"
></custom-cta-banner>
</main>
<custom-footer></custom-footer>
<script>
feather.replace();
</script>
<script src="script.js"></script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html> |