File size: 30,734 Bytes
dd7e5e1 | 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 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NurCode - CRM/ERP Solutions & Automation Experts</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
'dark-purple': '#401f3eff',
'english-violet': '#3f2e56ff',
'marian-blue': '#453f78ff',
'air-superiority-blue': '#759aabff',
'vanilla': '#faf2a1ff',
}
}
}
}
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Poppins', sans-serif;
background-color: #f8f9fa;
scroll-behavior: smooth;
}
.hero-gradient {
background: linear-gradient(135deg, #401f3e 0%, #3f2e56 25%, #45Urif78 50%, #759aab 100%);
}
.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.portfolio-item {
transition: all 0.3s ease;
}
.portfolio-item:hover {
transform: scale(1.03);
}
.contact-form {
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.btn-primary {
background: linear-gradient(90deg, #401f3e, #3f2e56);
transition: all 0.3s ease;
}
.btn-primary:hover {
background: linear-gradient(90deg, #3f2e56, #401f3e);
transform: translateY(-2px);
}
.text-gradient {
background: linear-gradient(90deg, #401f3e, #3f2e56, #453f78, #759aab);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.section-title {
position: relative;
display: inline-block;
}
.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: linear-gradient(90deg, #401f3e, #3f2e56);
border-radius: 2px;
}
.feature-icon {
background: linear-gradient(135deg, #401f3e 0%, #3f2e56 100%);
}
.stats-card {
transition: all 0.3s ease;
}
.stats-card:hover {
transform: translateY(-5px);
}
</style>
</head>
<body class="text-gray-800">
<!-- Header -->
<header class="fixed w-full z-50 bg-white shadow-md">
<div class="container mx-auto px-4 py-3 flex justify-between items-center">
<div class="flex items-center">
<div class="w-10 h-10 rounded-full bg-gradient-to-r from-dark-purple to-marian-blue flex items-center justify-center">
<span class="text-white font-bold text-xl">NC3span>
</div>
<span class="ml-3 text-xl font-bold text-dark-purple">NurCode</span>
</div>
<nav class="hidden md:flex space-x-8">
<a href="#home" class="font-medium hover:text-marian-blue transition">Home</a>
<a href="#services" class="font-medium hover:text-marian-blue transition">Services</a>
<a href="#portfolio" class="font-medium hover:text-marian-blue transition">Portfolio</a>
<a href="#about" class="font-medium hover:text-marian-blue transition">About</a>
<a href="#contact" class="font-medium hover:text-marian-blue transition">Contact</a>
</nav>
<button class="md:hidden text-dark-purple">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</header>
<!-- Hero Section -->
<section id="home" class="pt-20 pb-16 hero-gradient text-white">
<div class="container mx-auto px-4 flex flex-col md:flex-row items-center">
<div class="md:w-1/2 py-12 md:py-24">
<h1 class="text-4xl md:text-5xl font-bold mb-6">Transform Your Business with Technology</h1>
<p class="text-xl mb-8 text-air-superiority-blue">CRM/ERP Solutions, Content Services, Telegram Bots & Automation Experts</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#contact" class="btn-primary px-8 py-4 rounded-lg font-bold text-center">Get Started</a>
<a href="#services" class="bg-white text-dark-purple px-8 py-4 rounded-lg font-bold text-center hover:bg-gray-100 transition">Learn More</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center py-12 md:py-0">
<div class="relative">
<div class="w-64 h-64 md:w-80 md:h-80 rounded-full bg-gradient-to-br from-vanilla to-air-superity-blue opacity-20 absolute -top-6 -left-6"></div>
<div class="w-64 h-64 md:w-80 md:h-80 rounded-full bg-gradient-to-br from-vanilla to-air-superity-blue opacity-20 absolute -bottom-6 -right-6"></div>
<div class="relative w-64 h-64 md:w-80 md:h-80 rounded-full bg-gradient-to-br from-dark-purple to-marian-blue flex items-center justify-center">
<div class="text-center p-4">
<i class="fas fa-code text-6xl mb-4 text-vanilla"></i>
<p class="font-bold text-vanilla">NurCode Solutions</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Stats Section -->
<section class="py-12 bg-gradient-to-r from-dark-purple to-marian-blue text-white">
<div class="container mx-auto px-4">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 text-center">
<div class="stats-card p-6 bg-white bg-opacity-10 rounded-xl backdrop-blur-sm">
<p class="text-3xl font-bold">150+</p>
<p class="text-air-superiority-blue">Projects Completed</p>
</div>
<div class="stats-card p-6 bg-white bg-opacity-10 rounded-xl backdrop-blur-sm">
<p class="text-3xl font-bold">98%</p>
<p class="text-air-superiority-blue">Client Satisfaction</p>
</div>
<div class="stats-card p-6 bg-white bg-opacity-10 rounded-xl backdrop-blur-sm">
<p class="text-3xl font-bold">50+</p>
<p class="text-air-superiority-blue">Happy Clients</p>
</div>
<div class="stats-card p-6 bg-white bg-opacity-10 rounded-xl backdrop-blur-sm">
<p class="text-3xl font-bold">5+</p>
<p class="text-air-superiority-blue">Years Experience</p>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-20 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Our Services</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">We provide cutting-edge solutions to help your business grow and thrive in the digital era</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
<div class="service-card bg-white p-8 rounded-xl shadow-lg transition-all">
<div class="feature-icon w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-database text-vanilla text-2xl"></i>
</div>
<h3 class="text-2xl font-bold mb-3">CRM Solutions</h3>
<p class="text-gray-600 mb-4">Custom CRM systems tailored to your business needs to manage customer relationships effectively.</p>
<a href="#" class="text-marian-blue font-medium flex items-center">
Learn more
<i class="fas fa-arrow-right ml-2 text-sm"></i>
</a>
</div>
<div class="service-card bg-white p-8 rounded-xl shadow-lg transition-all">
<div class="feature-icon w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-cogs text-vanilla text-2xl"></i>
</div>
<h3 class="text-2xl font-bold mb-3">ERP Systems</h3>
<p class="text-gray-600 mb-4">Integrated enterprise resource planning solutions to streamline your business operations.</p>
<a href="#" class="text-marian-blue font-medium flex items-center">
Learn more
<i class="fas fa-arrow-right ml-2 text-sm"></i>
</a>
</div>
<div class="service-card bg-white p-8 rounded-xl shadow-lg transition-all">
<div class="feature-icon w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fas fa-file-alt text-vanilla text-2xl"></i>
</div>
<h3 class="text-2xl font-bold mb-3">Content Services</h3>
<p class="text-gray-600 mb-4">Professional content creation and management services for your digital presence.</p>
<a href="#" class="text-marian-blue font-medium flex items-center">
Learn more
<i class="fas fa-arrow-right ml-2 text-sm"></i>
</a>
</div>
<div class="service-card bg-white p-8 rounded-xl shadow-lg transition-all">
<div class="feature-icon w-16 h-16 rounded-full flex items-center justify-center mb-6">
<i class="fab fa-telegram-plane text-vanilla text-2xl"></i>
</div>
<h3 class="text-2xl font-bold mb-3">Telegram Bots</h3>
<p class="text-gray-600 mb-4">Custom Telegram bot development for automation, customer service, and engagement.</p rounded <a href="#" class="text-marian-blue font-medium flex items-center">
Learn more
<i class="fas fa-arrow-right ml-2 text-sm"></i>
</a>
</div>
</div>
</div>
</section>
<!-- Portfolio Section -->
<section id="portfolio" class="py-20 bg-white">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Our Portfolio</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Explore our recent projects and see how we've helped businesses transform</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="portfolio-item bg-gray-50 rounded-xl overflow-hidden shadow-lg">
<div class="h-48 bg-gradient-to-r from-dark-purple to-marian-blue flex items-center justify-center">
<i class="fas fa-chart-line text-6xl text-vanilla"></i>
</div>
<div class="p-6">
<h3 class="text-2xl font-bold mb-2">ERP System for Retail Chain</h3>
<p class="text-gray-600 mb-4">Comprehensive ERP solution for inventory management and sales tracking across 50+ locations.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-dark-purple text-white px-3 py-1 rounded-full text-sm">ERP</span>
<span class="bg-marian-blue text-white px-3 py-1 rounded-full text-sm">Inventory</span>
<span class="bg-air-superiority-blue text-white px-3 py-1 rounded-full text-sm">Analytics</span>
</div>
</div>
</div>
<div class="portfolio-item bg-gray-50 rounded-xl overflow-hidden shadow-lg">
<div class="h-48 bg-gradient-to-r from-air-superiority-blue to-vanilla flex items-center justify-center">
<i class="fas fa-robot text-6xl text-dark-purple"></i>
</div>
<div class="p-6">
<h3 class="text-2xl font-bold mb-2">Telegram Automation Suite</h3>
<p class="text-gray-600 mb-4">Automated customer service and marketing automation for a SaaS company.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-dark-purple text-white px-3 py-1 rounded-full text-sm">Telegram</span>
<span class="bg-marian-blue text-white px-3 py-1 rounded-full text-sm">Automation</span>
<span class="bg-air-superiority-blue text-white px-3 py-1 rounded-full text-sm">AI</span>
</div>
</div>
</div>
<div class="portfolio-item bg-gray-50 rounded-xl overflow-hidden shadow-lg">
<div class="h-48 bg-gradient-to-r from-vanilla to-dark-purple flex items-center justify-center">
<i class="fas fa-users text-6xl text-marian-blue"></i>
</div>
<div class="p-6">
<h3 class="text-2xl font-bold mb-2">CRM for Healthcare Provider</h3>
<p class="text-gray-600 mb-4">Patient management system with appointment scheduling and medical records.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-dark-purple text-white px-3 py-1 rounded-full text-sm">CRM</span>
<span class="bg-marian-blue text-white px-3 py-1 rounded-full text-sm">Healthcare</span>
<span class="bg-air-superiority-blue text-white px-3 py-1 rounded-full text-sm">HIPAA</span>
</div>
</div>
</div>
<div class="portfolio-item bg-gray-50 rounded-xl overflow-hidden shadow-lg">
<div class="h-48 bg-gradient-to-r from-marian-blue to-air-superiority-blue flex items-center justify-center">
<i class="fas fa-file-invoice text-6xl text-vanilla"></i>
</div>
<div class="p-6">
<h3 class="text-2xl font-bold mb-2">Content Management Platform</h3>
<p class="text-gray-600 mb-4">Multi-language content platform for international marketing campaigns.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-dark-purple text-white px-3 py-1 rounded-full text-sm">Content</span>
<span class="bg-marian-blue text-white px-3 py-1 rounded-full text-sm">CMS</span>
<span class="bg-air-superiority-blue text-white px-3 py-1 rounded-full text-sm">SEO</span>
</div>
</div>
</div>
<div class="portfolio-item bg-gray-50 rounded-xl overflow-hidden shadow-lg">
<div class="h-48 bg-gradient-to-r from-air-superiority-blue to-vanilla flex items-center justify-center">
<i class="fas fa-shopping-cart text-6xl text-dark-purple"></i>
</div>
<div class="p-6">
<h3 class="text-2xl font-bold mb-2">E-commerce Automation</h3>
<p class="text-gray-600 mb-4">Order processing and inventory automation for online retailer.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-dark-purple text-white px-3 py-1 rounded-full text-sm">Automation</span>
<span class="bg-marian-blue text-white px-3 py-1 rounded-full text-sm">E-commerce</span>
<span class="bg-air-superiority-blue text-white px-3 py-1 rounded-full text-sm">API</span>
</div>
</div>
</div>
<div class="portfolio-item bg-gray-50 rounded-xl overflow-hidden shadow-lg">
<div class="h-48 bg-gradient-to-r from-dark-purple to-marian-blue flex items-center justify-center">
<i class="fas fa-mobile-alt text-6xl text-vanilla"></i>
</div>
<div class="p-6">
<h3 class="text-2xl font-bold mb-2">Mobile CRM App</h3>
<p class="text-gray-600 mb-4">Mobile-first CRM application for field sales teams.</p>
<div class="flex flex-wrap gap-2">
<span class="bg-dark-purple text-white px-3 py-1 rounded-full text-sm">Mobile</span>
<span class="bg-marian-blue text-white px-3 py-1 rounded-full text-sm">CRM</span>
<span class="bg-air-superiority-blue text-white px-3 py-1 rounded-full text-sm">iOS/Android</span>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-gradient-to-r from-dark-purple to-marian-blue text-white">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-12 md:mb-0">
<h2 class="text-3xl md:text-4xl font-bold mb-6">About NurCode</h2>
<p class="text-xl mb-6">We are a team of passionate developers, designers, and business strategists dedicated to transforming your ideas into digital reality.</p>
<p class="mb-6">Founded in 2018, NurCode has been at the forefront of developing innovative CRM/ERP solutions, content services, and automation tools that help businesses streamline operations and grow their customer base.</p>
<p>Our expertise spans across industries including healthcare, retail, finance, and technology. We believe in building long-term partnerships with our clients, ensuring that every solution we deliver exceeds expectations.</p>
<div class="mt-8">
<a href="#contact" class="btn-primary px-8 py-3 rounded-lg font-bold inline-block">Contact Us</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<div class="relative">
<div class="w-64 h-64 md:w-80 md:h-80 rounded-full bg-gradient-to-br from-vanilla to-air-superity-blue opacity-20 absolute -top-6 -left-6"></div>
<div class="w-64 h-64 md:w-80 md:h-80 rounded-full bg-gradient-to-br from-vanilla to-air-superity-blue opacity-20 absolute -bottom-6 -right-6"></div>
<div class="relative w-64 h-64 md:w-80 md:h-80 rounded-full bg-white bg-opacity-10 backdrop-blur-sm border border-white border-opacity-20 flex items-center justify-center">
<div class="text-center p-4">
<i class="fas fa-lightbulb text-6xl mb-4 text-vanilla"></i>
<p class="font-bold">Innovation Driven</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-gray-50">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold mb-4">Contact Us</h2>
<p class="text-xl text-gray-600 max-w-3xl mx-auto">Have a project in mind? Let's discuss how we can help you achieve your goals.</p>
</div>
<div class="flex flex-col lg:flex-row gap-12">
<div class="lg:w-1/2">
<div class="contact-form bg-white p-8 rounded-xl shadow-lg">
<form>
<div class="mb-6">
<label for="name" class="block text-gray-700 font-medium mb-2">Full Name</label>
<input type="text" id="name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-marian-blue" placeholder="Your name">
</div>
<div class="mb-6">
<label for="email" class="block text-gray-700 font-medium mb-2">Email Address</label>
<input type="email" id="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-marian-blue" placeholder="your.email@example.com">
</div>
<div class="mb-6">
<label for="subject" class="block text-gray-700 font-medium mb-2">Subject</label>
<input type=" car" id="subject" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-marian-blue" placeholder="How can we help?">
</div>
<div class="mb-6">
<label for="message" class="block text-gray-700 font-medium mb-2">Message</label>
<textarea id="message" rows="5" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-marian-blue" placeholder="Tell us about your project..."></textarea>
</div>
<button type="submit" class="btn-primary w-full py-4 rounded-lg font-bold text-white">Send Message</button>
</form>
</div>
</div>
<div class="lg:w-1/2">
<div class="bg-white p-8 rounded-xl shadow-lg h-full">
<h3 class="text-2xl font-bold mb-6">Get In Touch</h3>
<div class="space-y-6">
<div class="flex items-start">
<div class="feature-icon w-12 h-12 rounded-full flex items-center justify-center flex-shrink-0">
<i class="fas fa-map-marker-alt text-vanilla"></i>
</div>
<div class="ml-4">
<h4 class="text-lg font-bold">Our Location</h4>
<p class="text-gray-600">123 Tech Street, Innovation District<br>San Francisco, CA 94103</p>
</div>
</div>
<div class="flex items-start">
<div class="feature-icon w-12 h-12 rounded-full flex items-center justify-center flex-shrink-0">
<i class="fas fa-phone-alt text-vanilla"></i>
</div>
<div class="ml-4">
<h4 class="text-lg font-bold">Phone Number</h4>
<p class="text-gray-600">+1 (555) 123-4567</p>
</div>
</div>
<div class="flex items-start">
<div class="feature-icon w-12 h-12 rounded-full flex items-center justify-center flex-shrink-0">
<i class="fas fa-envelope text-vanilla"></i>
</div>
<div class="ml-4">
<h4 class="text-lg font-bold">Email Address</h4>
<p class="text-gray-600">info@nurcode.com</p>
</div>
</div>
<div class="flex items-start">
<div class="feature-icon w-12 h-12 rounded-full flex items-center justify-center flex-shrink-0">
<i class="fas fa-clock text-vanilla"></i>
</div>
<div class="ml-4">
<h4 class="text-lg font-bold">Working Hours</h4>
<p class="text-gray-600">Monday - Friday: 9AM - 6PM<br>Saturday: 10AM - 4PM</p>
</div>
</div>
</div>
<div class="mt-12">
<h3 class="text-2xl font-bold mb-6">Follow Us</h3>
<div class="flex space-x-4">
<a href="#" class="feature-icon w-12 h-12 rounded-full flex items-center justify-center">
<i class="fab fa-facebook-f text-vanilla"></i>
</a>
<a href="#" class="feature-icon w-12 h-12 rounded-full flex items-center justify-center">
<i class="fab fa-twitter text-vanilla"></i>
</a>
<a href="#" class="feature-icon w-12 h-12 rounded-full flex items-center justify-center">
<i class="fab fa-linkedin-in text-vanilla"></i>
</a>
<a href="#" class="feature-icon w-12 h-12 rounded-full flex items-center justify-center">
<i class="fab fa-instagram text-vanilla"></i>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-dark-purple text-white py-12">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row justify-between items-center">
<div class="mb-6 md:mb-0">
<div class="flex items-center">
<div class="w-10 h-10 rounded-full bg-gradient-to-r from-vanilla to-air-superity-blue flex items-center justify-center">
<span class="text-dark-purple font-bold text-xl">NC</span>
</div>
<span class="ml-3 text-xl font-bold">NurCode</span>
</div>
<p class="mt-2 text-air-superiority-blue">Transforming businesses through technology</p>
</div>
<div class="flex flex-col md:flex-row space-y-4 md:space-y-0 md:space-x-8 text-center">
<a href="#home" class="hover:text-vanilla transition">Home</a>
<a href="#services" class="hover:text-vanilla transition">Services</a>
<a href="#portfolio" class="hover:text-vanilla transition">Portfolio</a>
<a href="#about" class="hover:text-vanilla transition">About</a>
<a href="#contact" class="hover:text-vanilla transition">Contact</a>
</div>
</div>
<div class="border-t border-english-violet mt-8 pt-8 text-center text-air-superiority-blue">
<p>© 2023 NurCode. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
// Simple form validation
document.querySelector('form').addEventListener('submit', function(e) {
e.preventDefault();
const name = document.getElementById('name').value;
const email = document.getElementById('email').value;
if(name && email) {
alert('Thank you for your message! We will get back to you soon.');
this.reset();
} else {
alert('Please fill in all required fields.');
}
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=ValijonR/nurcode" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |