Spaces:
Running
Running

imply colors that is white black gray with all it's straight and silver only these colors and the pond supposed to be like coding font - Initial Deployment
c5bfa7c
verified
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Neotechnologys | Enterprise E-Commerce Solutions</title> | |
<meta name="description" content="Leading provider of enterprise e-commerce solutions. We build scalable, secure, and innovative digital commerce platforms."> | |
<script src="https://cdn.tailwindcss.com"></script> | |
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap" rel="stylesheet"> | |
<style> | |
/* Custom styles that extend Tailwind */ | |
body { | |
font-family: 'JetBrains Mono', monospace; | |
@apply bg-black text-gray-300; | |
-webkit-font-smoothing: none; | |
-moz-osx-font-smoothing: none; | |
line-height: 1.5; | |
} | |
.gradient-text { | |
color: #c0c0c0; | |
text-shadow: 0 0 5px rgba(192,192,192,0.5); | |
} | |
.gradient-border { | |
border: 1px solid #c0c0c0; | |
} | |
.header { | |
@apply fixed top-0 w-full z-50; | |
background: #000; | |
border-bottom: 1px solid #333; | |
} | |
.header.scrolled { | |
@apply py-4; | |
} | |
.hero { | |
@apply min-h-screen flex items-center relative; | |
background: #000; | |
border-bottom: 1px solid #333; | |
} | |
.hero::before { | |
content: ''; | |
@apply absolute inset-0; | |
background-image: | |
repeating-linear-gradient(0deg, #111, #111 1px, #000 1px, #000 20px); | |
} | |
.code-keyword { color: #c0c0c0; } | |
.code-string { color: #999; } | |
.code-function { color: #fff; } | |
.code-comment { color: #555; font-style: normal; } | |
.animate-on-scroll { | |
opacity: 0; | |
animation: fadeInUp 0.8s ease forwards; | |
} | |
@keyframes fadeInUp { | |
from { | |
opacity: 0; | |
transform: translateY(30px); | |
} | |
to { | |
opacity: 1; | |
transform: translateY(0); | |
} | |
} | |
.animate-delay-1 { animation-delay: 0.1s; } | |
.animate-delay-2 { animation-delay: 0.2s; } | |
.animate-delay-3 { animation-delay: 0.3s; } | |
.pulse { | |
animation: pulse 2s infinite; | |
} | |
@keyframes pulse { | |
0%, 100% { opacity: 1; } | |
50% { opacity: 0.5; } | |
} | |
</style> | |
</head> | |
<body class="antialiased"> | |
<!-- Header --> | |
<header class="header" id="header"> | |
<div class="container mx-auto px-6"> | |
<div class="flex justify-between items-center py-6 transition-all duration-300"> | |
<a href="/" class="flex items-center gap-3"> | |
<div class="w-10 h-10 bg-gradient-to-r from-gray-300 to-white rounded-lg flex items-center justify-center text-black font-bold text-lg shadow-md shadow-gray-400/10 transition-transform hover:rotate-[-5deg] hover:scale-105 hover:shadow-gray-400/20"> | |
NT | |
</div> | |
<span class="text-white font-mono font-semibold text-2xl">neotechnologys</span> | |
</a> | |
<nav class="hidden md:block"> | |
<ul class="flex items-center gap-10"> | |
<li><a href="#solutions" class="text-gray-300 hover:text-white font-medium text-sm relative after:absolute after:bottom-[-6px] after:left-0 after:w-0 after:h-0.5 after:bg-gradient-to-r after:from-gray-300 after:to-white after:transition-all after:duration-300 hover:after:w-full">Solutions</a></li> | |
<li><a href="#services" class="text-gray-300 hover:text-white font-medium text-sm relative after:absolute after:bottom-[-6px] after:left-0 after:w-0 after:h-0.5 after:bg-gradient-to-r after:from-gray-300 after:to-white after:transition-all after:duration-300 hover:after:w-full">Services</a></li> | |
<li><a href="#case-studies" class="text-gray-300 hover:text-white font-medium text-sm relative after:absolute after:bottom-[-6px] after:left-0 after:w-0 after:h-0.5 after:bg-gradient-to-r after:from-gray-300 after:to-white after:transition-all after:duration-300 hover:after:w-full">Case Studies</a></li> | |
<li><a href="#technology" class="text-gray-300 hover:text-white font-medium text-sm relative after:absolute after:bottom-[-6px] after:left-0 after:w-0 after:h-0.5 after:bg-gradient-to-r after:from-gray-300 after:to-white after:transition-all after:duration-300 hover:after:w-full">Technology</a></li> | |
<li><a href="#company" class="text-gray-300 hover:text-white font-medium text-sm relative after:absolute after:bottom-[-6px] after:left-0 after:w-0 after:h-0.5 after:bg-gradient-to-r after:from-gray-300 after:to-white after:transition-all after:duration-300 hover:after:w-full">Company</a></li> | |
<li><a href="#contact" class="ml-5 px-6 py-2.5 bg-white text-black rounded-md font-semibold text-sm hover:bg-transparent hover:text-white hover:border hover:border-white hover:shadow-lg hover:shadow-white/10 transition-all duration-300">Get Started</a></li> | |
</ul> | |
</nav> | |
<button id="mobileMenuBtn" class="md:hidden text-white p-2"> | |
<div class="w-6 h-6 relative"> | |
<span class="block w-full h-0.5 bg-white mb-1.5 transition-all duration-300"></span> | |
<span class="block w-full h-0.5 bg-white mb-1.5 transition-all duration-300"></span> | |
<span class="block w-full h-0.5 bg-white transition-all duration-300"></span> | |
</div> | |
</button> | |
</div> | |
</div> | |
</header> | |
<!-- Mobile Menu --> | |
<div id="mobileMenu" class="hidden fixed inset-0 z-40 bg-black/95 backdrop-blur-lg pt-24 px-6"> | |
<ul class="flex flex-col gap-6"> | |
<li><a href="#solutions" class="block text-gray-300 hover:text-white font-medium text-lg py-2">Solutions</a></li> | |
<li><a href="#services" class="block text-gray-300 hover:text-white font-medium text-lg py-2">Services</a></li> | |
<li><a href="#case-studies" class="block text-gray-300 hover:text-white font-medium text-lg py-2">Case Studies</a></li> | |
<li><a href="#technology" class="block text-gray-300 hover:text-white font-medium text-lg py-2">Technology</a></li> | |
<li><a href="#company" class="block text-gray-300 hover:text-white font-medium text-lg py-2">Company</a></li> | |
<li><a href="#contact" class="block mt-4 w-full text-center px-6 py-3 bg-white text-black rounded-md font-semibold hover:bg-transparent hover:text-white hover:border hover:border-white transition-all duration-300">Get Started</a></li> | |
</ul> | |
</div> | |
<!-- Hero Section --> | |
<section class="hero" id="home"> | |
<div class="container mx-auto px-6"> | |
<div class="max-w-4xl relative z-10 py-32"> | |
<div class="inline-flex items-center gap-2 px-4 py-2 bg-white/5 border border-white/10 rounded-full text-gray-300 text-xs font-semibold uppercase tracking-wider mb-8"> | |
<span class="w-2 h-2 bg-green-400 rounded-full pulse"></span> | |
Enterprise E-Commerce Solutions | |
</div> | |
<h1 class="text-5xl md:text-7xl font-extrabold leading-tight mb-6 text-white"> | |
Building the Future of<br> | |
<span class="gradient-text">Digital Commerce</span> | |
</h1> | |
<p class="text-xl text-gray-300 leading-relaxed mb-12 max-w-3xl"> | |
We architect scalable, secure, and innovative e-commerce platforms that transform businesses and elevate customer experiences in the digital marketplace. | |
</p> | |
<div class="flex flex-wrap gap-4 mb-20"> | |
<a href="#contact" class="px-8 py-4 bg-white text-black rounded-lg font-semibold text-lg flex items-center gap-2 hover:translate-y-[-2px] hover:shadow-xl hover:shadow-white/20 transition-all duration-300"> | |
Start Your Project | |
<span>→</span> | |
</a> | |
<a href="#case-studies" class="px-8 py-4 bg-transparent text-white border-2 border-white/20 rounded-lg font-semibold text-lg hover:bg-white/5 hover:border-white/40 transition-all duration-300"> | |
View Case Studies | |
</a> | |
</div> | |
<div class="grid grid-cols-2 md:grid-cols-4 gap-8 pt-12 mt-12 border-t border-white/10"> | |
<div> | |
<div class="text-4xl font-bold text-white mb-2">$2.5M+</div> | |
<div class="text-gray-500 text-sm uppercase tracking-wider">Revenue Generated</div> | |
</div> | |
<div> | |
<div class="text-4xl font-bold text-white mb-2">50+</div> | |
<div class="text-gray-500 text-sm uppercase tracking-wider">Projects Delivered</div> | |
</div> | |
<div> | |
<div class="text-4xl font-bold text-white mb-2">99.9%</div> | |
<div class="text-gray-500 text-sm uppercase tracking-wider">Uptime SLA</div> | |
</div> | |
<div> | |
<div class="text-4xl font-bold text-white mb-2">24/7</div> | |
<div class="text-gray-500 text-sm uppercase tracking-wider">Support Available</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- About Section --> | |
<section class="py-28 bg-gray-800" id="company"> | |
<div class="container mx-auto px-6"> | |
<div class="max-w-3xl mb-20"> | |
<div class="text-gray-400 text-xs font-semibold uppercase tracking-wider mb-4">About Neotechnologys</div> | |
<h2 class="text-4xl md:text-5xl font-bold text-white mb-6">Engineering Excellence in Every Project</h2> | |
<p class="text-lg text-gray-300 leading-relaxed"> | |
Since 2025, we've been at the forefront of e-commerce innovation, helping businesses transform their digital presence with cutting-edge technology and strategic expertise. | |
</p> | |
</div> | |
<div class="grid grid-cols-1 lg:grid-cols-2 gap-20 items-center"> | |
<div> | |
<h3 class="text-3xl font-semibold text-white mb-6">Your Partner in Digital Transformation</h3> | |
<p class="text-gray-300 leading-relaxed mb-6"> | |
At Neotechnologys, we don't just build e-commerce platforms – we engineer comprehensive digital ecosystems that drive growth, enhance customer engagement, and deliver measurable results. | |
</p> | |
<p class="text-gray-300 leading-relaxed mb-10"> | |
Our team of expert developers, designers, and strategists work collaboratively to create solutions that are not only technically superior but also aligned with your business objectives and market demands. | |
</p> | |
<div class="space-y-6"> | |
<div class="flex gap-4"> | |
<div class="w-12 h-12 bg-white/5 border border-white/10 rounded-lg flex items-center justify-center text-2xl shrink-0"> | |
⚡ | |
</div> | |
<div> | |
<h4 class="text-lg font-semibold text-white mb-1">Performance Optimized</h4> | |
<p class="text-gray-400 text-sm">Sub-second load times and 99.9% uptime guarantee</p> | |
</div> | |
</div> | |
<div class="flex gap-4"> | |
<div class="w-12 h-12 bg-white/5 border border-white/10 rounded-lg flex items-center justify-center text-2xl shrink-0"> | |
🔒 | |
</div> | |
<div> | |
<h4 class="text-lg font-semibold text-white mb-1">Enterprise Security</h4> | |
<p class="text-gray-400 text-sm">PCI DSS compliant with advanced threat protection</p> | |
</div> | |
</div> | |
<div class="flex gap-4"> | |
<div class="w-12 h-12 bg-white/5 border border-white/10 rounded-lg flex items-center justify-center text-2xl shrink-0"> | |
📈 | |
</div> | |
<div> | |
<h4 class="text-lg font-semibold text-white mb-1">Scalable Architecture</h4> | |
<p class="text-gray-400 text-sm">Built to handle millions of transactions seamlessly</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="bg-gray-800 border border-white/5 rounded-2xl p-12 relative overflow-hidden"> | |
<div class="bg-black rounded-lg overflow-hidden shadow-2xl"> | |
<div class="bg-gray-800 px-4 py-3 flex gap-2 border-b border-white/5"> | |
<div class="w-3 h-3 rounded-full bg-red-500"></div> | |
<div class="w-3 h-3 rounded-full bg-yellow-500"></div> | |
<div class="w-3 h-3 rounded-full bg-green-500"></div> | |
</div> | |
<div class="p-6 font-mono text-sm"> | |
<div class="flex mb-1"> | |
<span class="text-gray-500 w-8 mr-6 select-none">01</span> | |
<span class="text-gray-300"><span class="code-keyword">const</span> <span class="code-function">neotechnologys</span> = {</span> | |
</div> | |
<div class="flex mb-1"> | |
<span class="text-gray-500 w-8 mr-6 select-none">02</span> | |
<span class="text-gray-300"> mission: <span class="code-string">"Digital Excellence"</span>,</span> | |
</div> | |
<div class="flex mb-1"> | |
<span class="text-gray-500 w-8 mr-6 select-none">03</span> | |
<span class="text-gray-300"> approach: <span class="code-string">"Client-Centric"</span>,</span> | |
</div> | |
<div class="flex mb-1"> | |
<span class="text-gray-500 w-8 mr-6 select-none">04</span> | |
<span class="text-gray-300"> quality: <span class="code-string">"Uncompromised"</span>,</span> | |
</div> | |
<div class="flex mb-1"> | |
<span class="text-gray-500 w-8 mr-6 select-none">05</span> | |
<span class="text-gray-300"> innovation: <span class="code-string">"Continuous"</span></span> | |
</div> | |
<div class="flex mb-1"> | |
<span class="text-gray-500 w-8 mr-6 select-none">06</span> | |
<span class="text-gray-300">};</span> | |
</div> | |
<div class="flex mb-1"> | |
<span class="text-gray-500 w-8 mr-6 select-none">07</span> | |
<span class="text-gray-300"></span> | |
</div> | |
<div class="flex"> | |
<span class="text-gray-500 w-8 mr-6 select-none">08</span> | |
<span class="code-comment">// Building tomorrow's commerce today</span> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Services Section --> | |
<section class="py-28 bg-gray-900" id="services"> | |
<div class="container mx-auto px-6"> | |
<div class="max-w-3xl mb-20"> | |
<div class="text-gray-400 text-xs font-semibold uppercase tracking-wider mb-4">Our Services</div> | |
<h2 class="text-4xl md:text-5xl font-bold text-white mb-6">Comprehensive E-Commerce Solutions</h2> | |
<p class="text-lg text-gray-300 leading-relaxed"> | |
From strategy to implementation, we provide end-to-end services that cover every aspect of your digital commerce journey. | |
</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
<div class="bg-gray-900 border border-white/5 rounded-xl p-10 transition-all duration-300 hover:-translate-y-2 hover:shadow-xl hover:border-white/10 relative overflow-hidden group"> | |
<div class="absolute inset-x-0 top-0 h-0.5 bg-gradient-to-r from-gray-300 to-white opacity-0 group-hover:opacity-100 transition-opacity duration-300"></div> | |
<div class="flex gap-5 mb-6"> | |
<div class="w-14 h-14 bg-white/5 border border-white/10 rounded-xl flex items-center justify-center text-2xl"> | |
🛍️ | |
</div> | |
<div> | |
<h3 class="text-xl font-semibold text-white mb-2">Custom E-Commerce Development</h3> | |
<div class="text-gray-500 text-xs uppercase tracking-wider">Platform Development</div> | |
</div> | |
</div> | |
<p class="text-gray-300 mb-8"> | |
Build powerful, scalable online stores tailored to your unique business requirements with modern frameworks and best practices. | |
</p> | |
<ul class="space-y-3"> | |
<li class="flex items-center gap-3 text-gray-300 text-sm"> | |
<span class="text-gray-400 font-bold">→</span> Headless commerce architecture | |
</li> | |
<li class="flex items-center gap-3 text-gray-300 text-sm"> | |
<span class="text-gray-400 font-bold">→</span> Multi-vendor marketplace solutions | |
</li> | |
<li class="flex items-center gap-3 text-gray-300 text-sm"> | |
<span class="text-gray-400 font-bold">→</span> B2B & B2C platforms | |
</li> | |
<li class="flex items-center gap-3 text-gray-300 text-sm"> | |
<span class="text-gray-400 font-bold">→</span> Mobile-first responsive design | |
</li> | |
</ul> | |
</div> | |
<div class="bg-gray-900 border border-white/5 rounded-xl p-10 transition-all duration-300 hover:-translate-y-2 hover:shadow-xl hover:border-white/10 relative overflow-hidden group"> | |
<div class="absolute inset-x-0 top-0 h-0.5 bg-gradient-to-r from-gray-300 to-white opacity-0 group-hover:opacity-100 transition-opacity duration-300"></div> | |
<div class="flex gap-5 mb-6"> | |
<div class="w-14 h-14 bg-white/5 border border-white/10 rounded-xl flex items-center justify-center text-2xl"> | |
⚡ | |
</div> | |
<div> | |
<h3 class="text-xl font-semibold text-white mb-2">Performance Optimization</h3> | |
<div class="text-gray-500 text-xs uppercase tracking-wider">Technical Excellence</div> | |
</div> | |
</div> | |
<p class="text-gray-300 mb-8"> | |
Maximize your platform's speed and efficiency with advanced optimization techniques and infrastructure improvements. | |
</p> | |
<ul class="space-y-3"> | |
<li class="flex items-center gap-3 text-gray-300 text-sm"> | |
<span class="text-gray-400 font-bold">→</span> Core Web Vitals optimization | |
</li> | |
<li class="flex items-center gap-3 text-gray-300 text-sm"> | |
<span class="text-gray-400 font-bold">→</span> CDN implementation | |
</li> | |
<li class="flex items-center gap-3 text-gray-300 text-sm"> | |
<span class="text-gray-400 font-bold">→</span> Database optimization | |
</li> | |
<li class="flex items-center gap-3 text-gray-300 text-sm"> | |
<span class="text-gray-400 font-bold">→</span> Caching strategies | |
</li> | |
</ul> | |
</div> | |
<div class="bg-gray-900 border border-white/5 rounded-xl p-10 transition-all duration-300 hover:-translate-y-2 hover:shadow-xl hover:border-white/10 relative overflow-hidden group"> | |
<div class="absolute inset-x-0 top-0 h-0.5 bg-gradient-to-r from-gray-300 to-white opacity-0 group-hover:opacity-100 transition-opacity duration-300"></div> | |
<div class="flex gap-5 mb-6"> | |
<div class="w-14 h-14 bg-white/5 border border-white/10 rounded-xl flex items-center justify-center text-2xl"> | |
🔗 | |
</div> | |
<div> | |
<h3 class="text-xl font-semibold text-white mb-2">Systems Integration</h3> | |
<div class="text-gray-500 text-xs uppercase tracking-wider">Enterprise Solutions</div> | |
</div> | |
</div> | |
<p class="text-gray-300 mb-8"> | |
Seamlessly connect your e-commerce platform with existing business systems for unified operations. | |
</p> | |
<ul class="space-y-3"> | |
<li class="flex items-center gap-3 text-gray-300 text-sm"> | |
<span class="text-gray-400 font-bold">→</span> ERP & CRM integration | |
</li> | |
<li class="flex items-center gap-3 text-gray-300 text-sm"> | |
<span class="text-gray-400 font-bold">→</span> Payment gateway setup | |
</li> | |
<li class="flex items-center gap-3 text-gray-300 text-sm"> | |
<span class="text-gray-400 font-bold">→</span> Inventory management sync | |
</li> | |
<li class="flex items-center gap-3 text-gray-300 text-sm"> | |
<span class="text-gray-400 font-bold">→</span> Third-party API connections | |
</li> | |
</ul> | |
</div> | |
<div class="bg-gray-900 border border-white/5 rounded-xl p-10 transition-all duration-300 hover:-translate-y-2 hover:shadow-xl hover:border-white/10 relative overflow-hidden group"> | |
<div class="absolute inset-x-0 top-0 h-0.5 bg-gradient-to-r from-gray-300 to-white opacity-0 group-hover:opacity-100 transition-opacity duration-300"></div> | |
<div class="flex gap-5 mb-6"> | |
<div class="w-14 h-14 bg-white/5 border border-white/10 rounded-xl flex items-center justify-center text-2xl"> | |
📊 | |
</div> | |
<div> | |
<h3 class="text-xl font-semibold text-white mb-2">Analytics & Insights</h3> | |
<div class="text-gray-500 text-xs uppercase tracking-wider">Data Intelligence</div> | |
</div> | |
</div> | |
<p class="text-gray-300 mb-8"> | |
Harness the power of data with comprehensive analytics solutions that drive informed business decisions. | |
</p> | |
<ul class="space-y-3"> | |
<li class="flex items-center gap-3 text-gray-300 text-sm"> | |
<span class="text-gray-400 font-bold">→</span> Custom dashboard development | |
</li> | |
<li class="flex items-center gap-3 text-gray-300 text-sm"> | |
<span class="text-gray-400 font-bold">→</span> Conversion rate optimization | |
</li> | |
<li class="flex items-center gap-3 text-gray-300 text-sm"> | |
<span class="text-gray-400 font-bold">→</span> Customer behavior analysis | |
</li> | |
<li class="flex items-center gap-3 text-gray-300 text-sm"> | |
<span class="text-gray-400 font-bold">→</span> Predictive analytics | |
</li> | |
</ul> | |
</div> | |
<div class="bg-gray-900 border border-white/5 rounded-xl p-10 transition-all duration-300 hover:-translate-y-2 hover:shadow-xl hover:border-white/10 relative overflow-hidden group"> | |
<div class="absolute inset-x-0 top-0 h-0.5 bg-gradient-to-r from-gray-300 to-white opacity-0 group-hover:opacity-100 transition-opacity duration-300"></div> | |
<div class="flex gap-5 mb-6"> | |
<div class="w-14 h-14 bg-white/5 border border-white/10 rounded-xl flex items-center justify-center text-2xl"> | |
🛡️ | |
</div> | |
<div> | |
<h3 class="text-xl font-semibold text-white mb-2">Security & Compliance</h3> | |
<div class="text-gray-500 text-xs uppercase tracking-wider">Risk Management</div> | |
</div> | |
</div> | |
<p class="text-gray-300 mb-8"> | |
Protect your business and customers with enterprise-grade security measures and compliance frameworks. | |
</p> | |
<ul class="space-y-3"> | |
<li class="flex items-center gap-3 text-gray-300 text-sm"> | |
<span class="text-gray-400 font-bold">→</span> PCI DSS compliance | |
</li> | |
<li class="flex items-center gap-3 text-gray-300 text-sm"> | |
<span class="text-gray-400 font-bold">→</span> GDPR implementation | |
</li> | |
<li class="flex items-center gap-3 text-gray-300 text-sm"> | |
<span class="text-gray-400 font-bold">→</span> Security audits & testing | |
</li> | |
<li class="flex items-center gap-3 text-gray-300 text-sm"> | |
<span class="text-gray-400 font-bold">→</span> Fraud prevention systems | |
</li> | |
</ul> | |
</div> | |
<div class="bg-gray-900 border border-white/5 rounded-xl p-10 transition-all duration-300 hover:-translate-y-2 hover:shadow-xl hover:border-white/10 relative overflow-hidden group"> | |
<div class="absolute inset-x-0 top-0 h-0.5 bg-gradient-to-r from-gray-300 to-white opacity-0 group-hover:opacity-100 transition-opacity duration-300"></div> | |
<div class="flex gap-5 mb-6"> | |
<div class="w-14 h-14 bg-white/5 border border-white/10 rounded-xl flex items-center justify-center text-2xl"> | |
🚀 | |
</div> | |
<div> | |
<h3 class="text-xl font-semibold text-white mb-2">Growth & Scaling</h3> | |
<div class="text-gray-500 text-xs uppercase tracking-wider">Business Growth</div> | |
</div> | |
</div> | |
<p class="text-gray-300 mb-8"> | |
Scale your operations efficiently with infrastructure and strategies designed for sustainable growth. | |
</p> | |
<ul class="space-y-3"> | |
<li class="flex items-center gap-3 text-gray-300 text-sm"> | |
<span class="text-gray-400 font-bold">→</span> Cloud migration services | |
</li> | |
<li class="flex items-center gap-3 text-gray-300 text-sm"> | |
<span class="text-gray-400 font-bold">→</span> Microservices architecture | |
</li> | |
<li class="flex items-center gap-3 text-gray-300 text-sm"> | |
<span class="text-gray-400 font-bold">→</span> Auto-scaling solutions | |
</li> | |
<li class="flex items-center gap-3 text-gray-300 text-sm"> | |
<span class="text-gray-400 font-bold">→</span> Performance monitoring | |
</li> | |
</ul> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Case Studies Section --> | |
<section class="py-28 bg-gray-800" id="case-studies"> | |
<div class="container mx-auto px-6"> | |
<div class="max-w-3xl mb-20"> | |
<div class="text-gray-400 text-xs font-semibold uppercase tracking-wider mb-4">Success Stories</div> | |
<h2 class="text-4xl md:text-5xl font-bold text-white mb-6">Transforming Businesses Through Innovation</h2> | |
<p class="text-lg text-gray-300 leading-relaxed"> | |
Real results from real clients. Discover how we've helped businesses achieve their digital commerce goals. | |
</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
<div class="bg-black border border-white/5 rounded-xl overflow-hidden transition-all duration-300 hover:scale-[1.02] hover:shadow-xl cursor-pointer"> | |
<div class="h-72 bg-gray-800 flex items-center justify-center text-6xl opacity-30 relative"> | |
🛍️ | |
<div class="absolute inset-0 bg-gradient-to-b from-transparent to-black/80 opacity-0 hover:opacity-100 transition-opacity duration-300"></div> | |
</div> | |
<div class="p-8"> | |
<div class="flex gap-3 mb-4"> | |
<span class="text-xs px-3 py-1 bg-white/5 border border-white/10 rounded-full text-gray-300">Fashion Retail</span> | |
<span class="text-xs px-3 py-1 bg-white/5 border border-white/10 rounded-full text-gray-300">B2C</span> | |
</div> | |
<h3 class="text-2xl font-semibold text-white mb-3">Global Fashion Retailer</h3> | |
<p class="text-gray-300 mb-6"> | |
Complete digital transformation of a traditional retail brand, implementing headless commerce architecture for omnichannel experience. | |
</p> | |
<div class="grid grid-cols-2 gap-4 pt-6 border-t border-white/5"> | |
<div class="text-center"> | |
<div class="text-2xl font-bold text-white mb-1">250%</div> | |
<div class="text-gray-500 text-xs uppercase tracking-wider">Revenue Growth</div> | |
</div> | |
<div class="text-center"> | |
<div class="text-2xl font-bold text-white mb-1">3.2s</div> | |
<div class="text-gray-500 text-xs uppercase tracking-wider">Load Time</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="bg-black border border-white/5 rounded-xl overflow-hidden transition-all duration-300 hover:scale-[1.02] hover:shadow-xl cursor-pointer"> | |
<div class="h-72 bg-gray-800 flex items-center justify-center text-6xl opacity-30 relative"> | |
🏭 | |
<div class="absolute inset-0 bg-gradient-to-b from-transparent to-black/80 opacity-0 hover:opacity-100 transition-opacity duration-300"></div> | |
</div> | |
<div class="p-8"> | |
<div class="flex gap-3 mb-4"> | |
<span class="text-xs px-3 py-1 bg-white/5 border border-white/10 rounded-full text-gray-300">Manufacturing</span> | |
<span class="text-xs px-3 py-1 bg-white/5 border border-white/10 rounded-full text-gray-300">B2B</span> | |
</div> | |
<h3 class="text-2xl font-semibold text-white mb-3">Industrial Equipment Supplier</h3> | |
<p class="text-gray-300 mb-6"> | |
Built a comprehensive B2B platform with complex pricing rules, quote management, and ERP integration for streamlined operations. | |
</p> | |
<div class="grid grid-cols-2 gap-4 pt-6 border-t border-white/5"> | |
<div class="text-center"> | |
<div class="text-2xl font-bold text-white mb-1">40%</div> | |
<div class="text-gray-500 text-xs uppercase tracking-wider">Cost Reduction</div> | |
</div> | |
<div class="text-center"> | |
<div class="text-2xl font-bold text-white mb-1">500+</div> | |
<div class="text-gray-500 text-xs uppercase tracking-wider">Daily Orders</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="bg-black border border-white/5 rounded-xl overflow-hidden transition-all duration-300 hover:scale-[1.02] hover:shadow-xl cursor-pointer"> | |
<div class="h-72 bg-gray-800 flex items-center justify-center text-6xl opacity-30 relative"> | |
🍕 | |
<div class="absolute inset-0 bg-gradient-to-b from-transparent to-black/80 opacity-0 hover:opacity-100 transition-opacity duration-300"></div> | |
</div> | |
<div class="p-8"> | |
<div class="flex gap-3 mb-4"> | |
<span class="text-xs px-3 py-1 bg-white/5 border border-white/10 rounded-full text-gray-300">Food & Beverage</span> | |
<span class="text-xs px-3 py-1 bg-white/5 border border-white/10 rounded-full text-gray-300">Marketplace</span> | |
</div> | |
<h3 class="text-2xl font-semibold text-white mb-3">Multi-Restaurant Platform</h3> | |
<p class="text-gray-300 mb-6"> | |
Developed a multi-vendor food delivery platform with real-time tracking, dynamic pricing, and automated dispatch system. | |
</p> | |
<div class="grid grid-cols-2 gap-4 pt-6 border-t border-white/5"> | |
<div class="text-center"> | |
<div class="text-2xl font-bold text-white mb-1">10K+</div> | |
<div class="text-gray-500 text-xs uppercase tracking-wider">Active Users</div> | |
</div> | |
<div class="text-center"> | |
<div class="text-2xl font-bold text-white mb-1">98%</div> | |
<div class="text-gray-500 text-xs uppercase tracking-wider">Satisfaction</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Technology Stack --> | |
<section class="py-28 bg-gray-900" id="technology"> | |
<div class="container mx-auto px-6"> | |
<div class="max-w-3xl mb-20"> | |
<div class="text-gray-400 text-xs font-semibold uppercase tracking-wider mb-4">Technology Stack</div> | |
<h2 class="text-4xl md:text-5xl font-bold text-white mb-6">Powered by Industry-Leading Technologies</h2> | |
<p class="text-lg text-gray-300 leading-relaxed"> | |
We leverage the most advanced and reliable technologies to build robust, scalable, and future-proof solutions. | |
</p> | |
</div> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-12"> | |
<div> | |
<h3 class="text-lg font-semibold text-white mb-6 pb-3 border-b border-white/10">Frontend Development</h3> | |
<div class="space-y-4"> | |
<div class="flex items-center gap-4 p-3 bg-white/5 rounded-lg transition-all duration-200 hover:bg-white/10 hover:translate-x-1"> | |
<div class="w-10 h-10 bg-white/5 rounded-lg flex items-center justify-center text-lg"> | |
⚛️ | |
</div> | |
<div> | |
<div class="font-medium text-white">React / Next.js</div> | |
<div class="text-gray-500 text-sm">Modern UI frameworks</div> | |
</div> | |
</div> | |
<div class="flex items-center gap-4 p-3 bg-white/5 rounded-lg transition-all duration-200 hover:bg-white/10 hover:translate-x-1"> | |
<div class="w-10 h-10 bg-white/5 rounded-lg flex items-center justify-center text-lg"> | |
💚 | |
</div> | |
<div> | |
<div class="font-medium text-white">Vue.js / Nuxt</div> | |
<div class="text-gray-500 text-sm">Progressive frameworks</div> | |
</div> | |
</div> | |
<div class="flex items-center gap-4 p-3 bg-white/5 rounded-lg transition-all duration-200 hover:bg-white/10 hover:translate-x-1"> | |
<div class="w-10 h-10 bg-white/5 rounded-lg flex items-center justify-center text-lg"> | |
📱 | |
</div> | |
<div> | |
<div class="font-medium text-white">React Native</div> | |
<div class="text-gray-500 text-sm">Mobile applications</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold text-white mb-6 pb-3 border-b border-white/10">Backend Development</h3> | |
<div class="space-y-4"> | |
<div class="flex items-center gap-4 p-3 bg-white/5 rounded-lg transition-all duration-200 hover:bg-white/10 hover:translate-x-1"> | |
<div class="w-10 h-10 bg-white/5 rounded-lg flex items-center justify-center text-lg"> | |
🟢 | |
</div> | |
<div> | |
<div class="font-medium text-white">Node.js</div> | |
<div class="text-gray-500 text-sm">JavaScript runtime</div> | |
</div> | |
</div> | |
<div class="flex items-center gap-4 p-3 bg-white/5 rounded-lg transition-all duration-200 hover:bg-white/10 hover:translate-x-1"> | |
<div class="w-10 h-10 bg-white/5 rounded-lg flex items-center justify-center text-lg"> | |
🐍 | |
</div> | |
<div> | |
<div class="font-medium text-white">Python / Django</div> | |
<div class="text-gray-500 text-sm">Robust backend</div> | |
</div> | |
</div> | |
<div class="flex items-center gap-4 p-3 bg-white/5 rounded-lg transition-all duration-200 hover:bg-white/10 hover:translate-x-1"> | |
<div class="w-10 h-10 bg-white/5 rounded-lg flex items-center justify-center text-lg"> | |
💎 | |
</div> | |
<div> | |
<div class="font-medium text-white">Ruby on Rails</div> | |
<div class="text-gray-500 text-sm">Rapid development</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold text-white mb-6 pb-3 border-b border-white/10">Cloud & Infrastructure</h3> | |
<div class="space-y-4"> | |
<div class="flex items-center gap-4 p-3 bg-white/5 rounded-lg transition-all duration-200 hover:bg-white/10 hover:translate-x-1"> | |
<div class="w-10 h-10 bg-white/5 rounded-lg flex items-center justify-center text-lg"> | |
☁️ | |
</div> | |
<div> | |
<div class="font-medium text-white">AWS</div> | |
<div class="text-gray-500 text-sm">Cloud computing</div> | |
</div> | |
</div> | |
<div class="flex items-center gap-4 p-3 bg-white/5 rounded-lg transition-all duration-200 hover:bg-white/10 hover:translate-x-1"> | |
<div class="w-10 h-10 bg-white/5 rounded-lg flex items-center justify-center text-lg"> | |
🔷 | |
</div> | |
<div> | |
<div class="font-medium text-white">Google Cloud</div> | |
<div class="text-gray-500 text-sm">Scalable infrastructure</div> | |
</div> | |
</div> | |
<div class="flex items-center gap-4 p-3 bg-white/5 rounded-lg transition-all duration-200 hover:bg-white/10 hover:translate-x-1"> | |
<div class="w-10 h-10 bg-white/5 rounded-lg flex items-center justify-center text-lg"> | |
🐳 | |
</div> | |
<div> | |
<div class="font-medium text-white">Docker / Kubernetes</div> | |
<div class="text-gray-500 text-sm">Container orchestration</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold text-white mb-6 pb-3 border-b border-white/10">E-Commerce Platforms</h3> | |
<div class="space-y-4"> | |
<div class="flex items-center gap-4 p-3 bg-white/5 rounded-lg transition-all duration-200 hover:bg-white/10 hover:translate-x-1"> | |
<div class="w-10 h-10 bg-white/5 rounded-lg flex items-center justify-center text-lg"> | |
🛒 | |
</div> | |
<div> | |
<div class="font-medium text-white">Shopify Plus</div> | |
<div class="text-gray-500 text-sm">Enterprise commerce</div> | |
</div> | |
</div> | |
<div class="flex items-center gap-4 p-3 bg-white/5 rounded-lg transition-all duration-200 hover:bg-white/10 hover:translate-x-1"> | |
<div class="w-10 h-10 bg-white/5 rounded-lg flex items-center justify-center text-lg"> | |
🟣 | |
</div> | |
<div> | |
<div class="font-medium text-white">WooCommerce</div> | |
<div class="text-gray-500 text-sm">WordPress commerce</div> | |
</div> | |
</div> | |
<div class="flex items-center gap-4 p-3 bg-white/5 rounded-lg transition-all duration-200 hover:bg-white/10 hover:translate-x-1"> | |
<div class="w-10 h-10 bg-white/5 rounded-lg flex items-center justify-center text-lg"> | |
🔶 | |
</div> | |
<div> | |
<div class="font-medium text-white">Magento</div> | |
<div class="text-gray-500 text-sm">Flexible platform</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Contact Section --> | |
<section class="py-28 bg-gray-800" id="contact"> | |
<div class="container mx-auto px-6 max-w-2xl text-center"> | |
<div class="mb-20"> | |
<div class="text-gray-400 text-xs font-semibold uppercase tracking-wider mb-4">Get in Touch</div> | |
<h2 class="text-4xl md:text-5xl font-bold text-white mb-6">Let's Build Something Amazing Together</h2> | |
<p class="text-lg text-gray-300 leading-relaxed"> | |
Ready to transform your e-commerce vision into reality? We're here to help you every step of the way. | |
</p> | |
</div> | |
<form class="space-y-6 text-left"> | |
<div> | |
<label for="name" class="block text-gray-300 text-sm font-medium mb-2">Your Name</label> | |
<input type="text" id="name" class="w-full px-4 py-3 bg-black border border-white/10 rounded-lg text-white focus:outline-none focus:border-white/30 focus:bg-white/5 transition-all duration-200" placeholder="John Doe" required> | |
</div> | |
<div> | |
<label for="email" class="block text-gray-300 text-sm font-medium mb-2">Email Address</label> | |
<input type="email" id="email" class="w-full px-4 py-3 bg-black border border-white/10 rounded-lg text-white focus:outline-none focus:border-white/30 focus:bg-white/5 transition-all duration-200" placeholder="[email protected]" required> | |
</div> | |
<div> | |
<label for="company" class="block text-gray-300 text-sm font-medium mb-2">Company</label> | |
<input type="text" id="company" class="w-full px-4 py-3 bg-black border border-white/10 rounded-lg text-white focus:outline-none focus:border-white/30 focus:bg-white/5 transition-all duration-200" placeholder="Your Company Name"> | |
</div> | |
<div> | |
<label for="message" class="block text-gray-300 text-sm font-medium mb-2">Project Details</label> | |
<textarea id="message" rows="5" class="w-full px-4 py-3 bg-black border border-white/10 rounded-lg text-white focus:outline-none focus:border-white/30 focus:bg-white/5 transition-all duration-200" placeholder="Tell us about your project..." required></textarea> | |
</div> | |
<button type="submit" class="w-full md:w-auto px-12 py-4 bg-white text-black rounded-lg font-semibold hover:translate-y-[-2px] hover:shadow-lg hover:shadow-white/20 transition-all duration-300"> | |
Send Message | |
</button> | |
</form> | |
</div> | |
</section> | |
<!-- Footer --> | |
<footer class="bg-gray-900 pt-20 pb-12 border-t border-white/5"> | |
<div class="container mx-auto px-6"> | |
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-5 gap-12 mb-12"> | |
<div class="lg:col-span-2"> | |
<div class="flex items-center gap-3 mb-6"> | |
<div class="w-9 h-9 bg-gradient-to-r from-gray-300 to-white rounded-lg flex items-center justify-center text-black font-bold text-sm"> | |
NT | |
</div> | |
<span class="text-white font-mono font-semibold text-xl">neotechnologys</span> | |
</div> | |
<p class="text-gray-500 mb-6"> | |
Leading provider of enterprise e-commerce solutions. We build scalable, secure, and innovative digital commerce platforms that drive business growth. | |
</p> | |
<div class="flex gap-3"> | |
<a href="#" class="w-10 h-10 bg-white/5 border border-white/10 rounded-lg flex items-center justify-center text-gray-300 hover:bg-white hover:text-black transition-all duration-200"> | |
in | |
</a> | |
<a href="#" class="w-10 h-10 bg-white/5 border border-white/10 rounded-lg flex items-center justify-center text-gray-300 hover:bg-white hover:text-black transition-all duration-200"> | |
tw | |
</a> | |
<a href="#" class="w-10 h-10 bg-white/5 border border-white/10 rounded-lg flex items-center justify-center text-gray-300 hover:bg-white hover:text-black transition-all duration-200"> | |
gh | |
</a> | |
<a href="#" class="w-10 h-10 bg-white/5 border border-white/10 rounded-lg flex items-center justify-center text-gray-300 hover:bg-white hover:text-black transition-all duration-200"> | |
fb | |
</a> | |
</div> | |
</div> | |
<div> | |
<h4 class="text-gray-400 text-sm font-semibold uppercase tracking-wider mb-6">Solutions</h4> | |
<ul class="space-y-3"> | |
<li><a href="#" class="text-gray-500 hover:text-white transition-colors duration-200">E-Commerce Platform</a></li> | |
<li><a href="#" class="text-gray-500 hover:text-white transition-colors duration-200">B2B Solutions</a></li> | |
<li><a href="#" class="text-gray-500 hover:text-white transition-colors duration-200">Marketplace</a></li> | |
<li><a href="#" class="text-gray-500 hover:text-white transition-colors duration-200">Mobile Commerce</a></li> | |
</ul> | |
</div> | |
<div> | |
<h4 class="text-gray-400 text-sm font-semibold uppercase tracking-wider mb-6">Services</h4> | |
<ul class="space-y-3"> | |
<li><a href="#" class="text-gray-500 hover:text-white transition-colors duration-200">Custom Development</a></li> | |
<li><a href="#" class="text-gray-500 hover:text-white transition-colors duration-200">Systems Integration</a></li> | |
<li><a href="#" class="text-gray-500 hover:text-white transition-colors duration-200">Performance Optimization</a></li> | |
<li><a href="#" class="text-gray-500 hover:text-white transition-colors duration-200">Support & Maintenance</a></li> | |
</ul> | |
</div> | |
<div> | |
<h4 class="text-gray-400 text-sm font-semibold uppercase tracking-wider mb-6">Company</h4> | |
<ul class="space-y-3"> | |
<li><a href="#" class="text-gray-500 hover:text-white transition-colors duration-200">About Us</a></li> | |
<li><a href="#" class="text-gray-500 hover:text-white transition-colors duration-200">Case Studies</a></li> | |
<li><a href="#" class="text-gray-500 hover:text-white transition-colors duration-200">Careers</a></li> | |
<li><a href="#" class="text-gray-500 hover:text-white transition-colors duration-200">Blog</a></li> | |
</ul> | |
</div> | |
</div> | |
<div class="pt-8 border-t border-white/5 flex flex-col md:flex-row justify-between items-center gap-6"> | |
<div class="text-gray-500 text-sm"> | |
© 2025 Neotechnologys, L.L.C. All rights reserved. | Wyoming, USA | |
</div> | |
<div class="flex gap-6"> | |
<a href="#" class="text-gray-500 hover:text-white text-sm transition-colors duration-200">Privacy Policy</a> | |
<a href="#" class="text-gray-500 hover:text-white text-sm transition-colors duration-200">Terms of Service</a> | |
<a href="#" class="text-gray-500 hover:text-white text-sm transition-colors duration-200">Cookie Policy</a> | |
</div> | |
</div> | |
</div> | |
</footer> | |
<script> | |
// Mobile menu toggle | |
const mobileMenuBtn = document.getElementById('mobileMenuBtn'); | |
const mobileMenu = document.getElementById('mobileMenu'); | |
const menuIcon = mobileMenuBtn.querySelector('div'); | |
mobileMenuBtn.addEventListener('click', () => { | |
mobileMenu.classList.toggle('hidden'); | |
menuIcon.classList.toggle('open'); | |
}); | |
// Close mobile menu when clicking on a link | |
const mobileLinks = mobileMenu.querySelectorAll('a'); | |
mobileLinks.forEach(link => { | |
link.addEventListener('click', () => { | |
mobileMenu.classList.add('hidden'); | |
menuIcon.classList.remove('open'); | |
}); | |
}); | |
// Header scroll effect | |
const header = document.getElementById('header'); | |
window.addEventListener('scroll', () => { | |
if (window.scrollY > 50) { | |
header.classList.add('scrolled'); | |
} else { | |
header.classList.remove('scrolled'); | |
} | |
}); | |
// Smooth scrolling for anchor links | |
document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
anchor.addEventListener('click', function (e) { | |
e.preventDefault(); | |
const targetId = this.getAttribute('href'); | |
if (targetId === '#') return; | |
const targetElement = document.querySelector(targetId); | |
if (targetElement) { | |
window.scrollTo({ | |
top: targetElement.offsetTop - 80, | |
behavior: 'smooth' | |
}); | |
} | |
}); | |
}); | |
// Animation on scroll | |
const animateElements = document.querySelectorAll('.animate-on-scroll'); | |
const observer = new IntersectionObserver((entries) => { | |
entries.forEach(entry => { | |
if (entry.isIntersecting) { | |
entry.target.style{"ok":false,"message":"terminated"} | |
<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=fsalmansour/homepage" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
</html> |