ninetech / index.html
OrcsRise's picture
create a website for an embedded software team. website name is NineTech - Initial Deployment
c4661a0 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NineTech - Embedded Software Solutions</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: {
primary: '#1a365d',
secondary: '#2c5282',
accent: '#3182ce',
dark: '#0f172a',
light: '#f8fafc'
}
}
}
}
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
scroll-behavior: smooth;
}
.hero-bg {
background: linear-gradient(135deg, #1a365d 0%, #2c5282 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);
}
.team-card:hover {
transform: scale(1.03);
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
70% { box-shadow: 0 0 0 15px rgba(59, 130, 246, 0); }
100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}
.parallax {
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.tech-icon {
transition: all 0.3s ease;
}
.tech-icon:hover {
transform: scale(1.2);
color: #3182ce;
}
</style>
</head>
<body class="bg-light text-dark">
<!-- Navigation -->
<nav class="fixed w-full bg-white shadow-md z-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="flex justify-between h-20">
<div class="flex items-center">
<div class="flex-shrink-0 flex items-center">
<div class="bg-accent w-10 h-10 rounded-lg flex items-center justify-center">
<i class="fas fa-microchip text-white text-xl"></i>
</div>
<span class="ml-3 text-2xl font-bold text-primary">Nine<span class="text-accent">Tech</span></span>
</div>
</div>
<div class="hidden md:flex items-center space-x-8">
<a href="#home" class="text-primary hover:text-accent font-medium">Home</a>
<a href="#services" class="text-primary hover:text-accent font-medium">Services</a>
<a href="#team" class="text-primary hover:text-accent font-medium">Team</a>
<a href="#projects" class="text-primary hover:text-accent font-medium">Projects</a>
<a href="#contact" class="text-primary hover:text-accent font-medium">Contact</a>
</div>
<div class="flex items-center md:hidden">
<button id="mobile-menu-button" class="text-primary hover:text-accent">
<i class="fas fa-bars text-2xl"></i>
</button>
</div>
</div>
</div>
<!-- Mobile menu -->
<div id="mobile-menu" class="hidden md:hidden bg-white py-2 px-4 shadow-lg">
<a href="#home" class="block py-2 text-primary hover:text-accent">Home</a>
<a href="#services" class="block py-2 text-primary hover:text-accent">Services</a>
<a href="#team" class="block py-2 text-primary hover:text-accent">Team</a>
<a href="#projects" class="block py-2 text-primary hover:text-accent">Projects</a>
<a href="#contact" class="block py-2 text-primary hover:text-accent">Contact</a>
</div>
</nav>
<!-- Hero Section -->
<section id="home" class="hero-bg pt-32 pb-20">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-2 gap-12 items-center">
<div class="text-white">
<h1 class="text-4xl md:text-5xl font-bold leading-tight">
Embedded Software Solutions for the Future
</h1>
<p class="mt-6 text-xl text-blue-100 max-w-2xl">
NineTech delivers cutting-edge embedded software development for IoT, automotive, industrial, and consumer electronics.
</p>
<div class="mt-10 flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="#contact" class="bg-accent hover:bg-blue-600 text-white font-bold py-3 px-8 rounded-lg transition duration-300 text-center">
Get Started
</a>
<a href="#services" class="bg-transparent border-2 border-white hover:bg-white hover:text-primary text-white font-bold py-3 px-8 rounded-lg transition duration-300 text-center">
Our Services
</a>
</div>
</div>
<div class="flex justify-center">
<div class="relative">
<div class="w-64 h-64 md:w-80 md:h-80 bg-accent rounded-full absolute -top-6 -left-6 opacity-20"></div>
<div class="w-64 h-64 md:w-80 md:h-80 bg-accent rounded-full absolute -bottom-6 -right-6 opacity-20"></div>
<div class="relative bg-white rounded-2xl shadow-xl p-2">
<div class="bg-gray-800 rounded-xl p-6">
<div class="flex justify-between mb-4">
<div class="text-green-400 font-mono text-sm">Embedded System</div>
<div class="flex space-x-2">
<div class="w-3 h-3 bg-red-500 rounded-full"></div>
<div class="w-3 h-3 bg-yellow-500 rounded-full"></div>
<div class="w-3 h-3 bg-green-500 rounded-full"></div>
</div>
</div>
<div class="font-mono text-green-400 text-sm">
<div class="mb-1">$ <span class="animate-pulse">_</span></div>
<div class="mb-1">Initializing NineTech system...</div>
<div class="mb-1">Loading embedded modules...</div>
<div class="mb-1">System ready. Welcome to NineTech!</div>
<div class="flex">
<span class="text-blue-400">nine@tech:~$ </span>
<span class="ml-1 animate-pulse">|</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-primary">Our Services</h2>
<p class="mt-4 text-xl text-gray-600 max-w-3xl mx-auto">
Comprehensive embedded software solutions tailored to your specific requirements
</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-10">
<!-- Service 1 -->
<div class="service-card bg-light rounded-xl p-8 shadow-lg border border-gray-100 transition-all duration-300">
<div class="w-16 h-16 bg-blue-100 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-microchip text-accent text-2xl"></i>
</div>
<h3 class="text-2xl font-bold text-primary mb-3">Firmware Development</h3>
<p class="text-gray-600 mb-4">
Custom firmware solutions for microcontrollers and embedded processors, optimized for performance and reliability.
</p>
<ul class="space-y-2">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>RTOS Implementation</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Device Drivers</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Bootloader Design</span>
</li>
</ul>
</div>
<!-- Service 2 -->
<div class="service-card bg-light rounded-xl p-8 shadow-lg border border-gray-100 transition-all duration-300">
<div class="w-16 h-16 bg-blue-100 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-network-wired text-accent text-2xl"></i>
</div>
<h3 class="text-2xl font-bold text-primary mb-3">IoT Integration</h3>
<p class="text-gray-600 mb-4">
Seamless connectivity solutions for IoT devices with secure communication protocols.
</p>
<ul class="space-y-2">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>WiFi/Bluetooth Modules</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Cloud Integration</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Edge Computing</span>
</li>
</ul>
</div>
<!-- Service 3 -->
<div class="service-card bg-light rounded-xl p-8 shadow-lg border border-gray-100 transition-all duration-300">
<div class="w-16 h-16 bg-blue-100 rounded-lg flex items-center justify-center mb-6">
<i class="fas fa-shield-alt text-accent text-2xl"></i>
</div>
<h3 class="text-2xl font-bold text-primary mb-3">Security Solutions</h3>
<p class="text-gray-600 mb-4">
Robust security implementations to protect your embedded systems from vulnerabilities.
</p>
<ul class="space-y-2">
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Secure Boot</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Encryption Protocols</span>
</li>
<li class="flex items-center">
<i class="fas fa-check-circle text-green-500 mr-2"></i>
<span>Firmware Updates</span>
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- Technologies Section -->
<section class="py-16 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-12">
<h2 class="text-3xl md:text-4xl font-bold text-primary">Technologies We Work With</h2>
<p class="mt-4 text-xl text-gray-600 max-w-3xl mx-auto">
Our team has expertise across a wide range of embedded technologies
</p>
</div>
<div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-6 gap-8">
<div class="tech-icon flex flex-col items-center">
<i class="fab fa-microchip text-5xl text-gray-700 mb-3"></i>
<span class="text-gray-700 font-medium">ARM</span>
</div>
<div class="tech-icon flex flex-col items-center">
<i class="fab fa-raspberry-pi text-5xl text-gray-700 mb-3"></i>
<span class="text-gray-700 font-medium">Raspberry Pi</span>
</div>
<div class="tech-icon flex flex-col items-center">
<i class="fab fa-arduino text-5xl text-gray-700 mb-3"></i>
<span class="text-gray-700 font-medium">Arduino</span>
</div>
<div class="tech-icon flex flex-col items-center">
<i class="fab fa-linux text-5xl text-gray-700 mb-3"></i>
<span class="text-gray-700 font-medium">Linux</span>
</div>
<div class="tech-icon flex flex-col items-center">
<i class="fas fa-bluetooth text-5xl text-gray-700 mb-3"></i>
<span class="text-gray-700 font-medium">Bluetooth</span>
</div>
<div class="tech-icon flex flex-col items-center">
<i class="fas fa-wifi text-5xl text-gray-700 mb-3"></i>
<span class="text-gray-700 font-medium">WiFi</span>
</div>
</div>
</div>
</section>
<!-- Team Section -->
<section id="team" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-primary">Meet Our Team</h2>
<p class="mt-4 text-xl text-gray-600 max-w-3xl mx-auto">
Passionate engineers dedicated to excellence in embedded software development
</p>
</div>
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-8">
<!-- Team Member 1 -->
<div class="team-card bg-light rounded-xl overflow-hidden shadow-lg transition-all duration-300">
<div class="h-48 bg-gradient-to-r from-blue-500 to-indigo-600"></div>
<div class="p-6 text-center">
<div class="relative -mt-16 mb-4">
<img class="w-24 h-24 rounded-full border-4 border-white mx-auto" src="https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=300&q=80" alt="Team Member">
</div>
<h3 class="text-xl font-bold text-primary">Alex Morgan</h3>
<p class="text-accent mb-3">Lead Embedded Engineer</p>
<p class="text-gray-600 text-sm">
12+ years experience in firmware development for automotive and industrial systems.
</p>
<div class="mt-4 flex justify-center space-x-3">
<a href="#" class="text-gray-500 hover:text-accent"><i class="fab fa-linkedin-in"></i></a>
<a href="#" class="text-gray-500 hover:text-accent"><i class="fab fa-github"></i></a>
<a href="#" class="text-gray-500 hover:text-accent"><i class="fab fa-twitter"></i></a>
</div>
</div>
</div>
<!-- Team Member 2 -->
<div class="team-card bg-light rounded-xl overflow-hidden shadow-lg transition-all duration-300">
<div class="h-48 bg-gradient-to-r from-blue-500 to-indigo-600"></div>
<div class="p-6 text-center">
<div class="relative -mt-16 mb-4">
<img class="w-24 h-24 rounded-full border-4 border-white mx-auto" src="https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=300&q=80" alt="Team Member">
</div>
<h3 class="text-xl font-bold text-primary">Sarah Johnson</h3>
<p class="text-accent mb-3">IoT Solutions Architect</p>
<p class="text-gray-600 text-sm">
Specializes in wireless communication protocols and cloud integration for smart devices.
</p>
<div class="mt-4 flex justify-center space-x-3">
<a href="#" class="text-gray-500 hover:text-accent"><i class="fab fa-linkedin-in"></i></a>
<a href="#" class="text-gray-500 hover:text-accent"><i class="fab fa-github"></i></a>
<a href="#" class="text-gray-500 hover:text-accent"><i class="fab fa-twitter"></i></a>
</div>
</div>
</div>
<!-- Team Member 3 -->
<div class="team-card bg-light rounded-xl overflow-hidden shadow-lg transition-all duration-300">
<div class="h-48 bg-gradient-to-r from-blue-500 to-indigo-600"></div>
<div class="p-6 text-center">
<div class="relative -mt-16 mb-4">
<img class="w-24 h-24 rounded-full border-4 border-white mx-auto" src="https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=300&q=80" alt="Team Member">
</div>
<h3 class="text-xl font-bold text-primary">Michael Chen</h3>
<p class="text-accent mb-3">Firmware Engineer</p>
<p class="text-gray-600 text-sm">
Expert in real-time operating systems and low-level device driver development.
</p>
<div class="mt-4 flex justify-center space-x-3">
<a href="#" class="text-gray-500 hover:text-accent"><i class="fab fa-linkedin-in"></i></a>
<a href="#" class="text-gray-500 hover:text-accent"><i class="fab fa-github"></i></a>
<a href="#" class="text-gray-500 hover:text-accent"><i class="fab fa-twitter"></i></a>
</div>
</div>
</div>
<!-- Team Member 4 -->
<div class="team-card bg-light rounded-xl overflow-hidden shadow-lg transition-all duration-300">
<div class="h-48 bg-gradient-to-r from-blue-500 to-indigo-600"></div>
<div class="p-6 text-center">
<div class="relative -mt-16 mb-4">
<img class="w-24 h-24 rounded-full border-4 border-white mx-auto" src="https://images.unsplash.com/photo-1551836022-d5d88e9218df?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=300&q=80" alt="Team Member">
</div>
<h3 class="text-xl font-bold text-primary">Elena Rodriguez</h3>
<p class="text-accent mb-3">Security Specialist</p>
<p class="text-gray-600 text-sm">
Focuses on embedded system security, encryption, and secure communication protocols.
</p>
<div class="mt-4 flex justify-center space-x-3">
<a href="#" class="text-gray-500 hover:text-accent"><i class="fab fa-linkedin-in"></i></a>
<a href="#" class="text-gray-500 hover:text-accent"><i class="fab fa-github"></i></a>
<a href="#" class="text-gray-500 hover:text-accent"><i class="fab fa-twitter"></i></a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Projects Section -->
<section id="projects" class="py-20 bg-gray-50">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center mb-16">
<h2 class="text-3xl md:text-4xl font-bold text-primary">Our Projects</h2>
<p class="mt-4 text-xl text-gray-600 max-w-3xl mx-auto">
Real-world applications of our embedded software expertise
</p>
</div>
<div class="grid grid-cols-1 lg:grid-cols-2 gap-10">
<!-- Project 1 -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg">
<div class="h-64 bg-gradient-to-r from-blue-600 to-indigo-700 flex items-center justify-center">
<i class="fas fa-car text-white text-7xl"></i>
</div>
<div class="p-8">
<h3 class="text-2xl font-bold text-primary mb-3">Autonomous Vehicle Control System</h3>
<p class="text-gray-600 mb-4">
Developed a real-time control system for autonomous vehicles with sensor fusion and decision-making algorithms.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">C++</span>
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">ROS</span>
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">Computer Vision</span>
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">Sensor Fusion</span>
</div>
<a href="#" class="text-accent font-medium flex items-center">
View Case Study
<i class="fas fa-arrow-right ml-2 text-sm"></i>
</a>
</div>
</div>
<!-- Project 2 -->
<div class="bg-white rounded-xl overflow-hidden shadow-lg">
<div class="h-64 bg-gradient-to-r from-green-500 to-teal-600 flex items-center justify-center">
<i class="fas fa-home text-white text-7xl"></i>
</div>
<div class="p-8">
<h3 class="text-2xl font-bold text-primary mb-3">Smart Home IoT Platform</h3>
<p class="text-gray-600 mb-4">
Created a comprehensive IoT platform for smart home automation with energy management and security features.
</p>
<div class="flex flex-wrap gap-2 mb-4">
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">ESP32</span>
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">MQTT</span>
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">AWS IoT</span>
<span class="bg-blue-100 text-blue-800 text-xs font-medium px-2.5 py-0.5 rounded">Mobile App</span>
</div>
<a href="#" class="text-accent font-medium flex items-center">
View Case Study
<i class="fas fa-arrow-right ml-2 text-sm"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Contact Section -->
<section id="contact" class="py-20 bg-white">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 lg:grid-cols-2 gap-16">
<div>
<h2 class="text-3xl md:text-4xl font-bold text-primary mb-6">Get In Touch</h2>
<p class="text-xl text-gray-600 mb-8">
Have a project in mind? Let's discuss how we can help bring your embedded software vision to life.
</p>
<div class="space-y-6">
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-100 p-3 rounded-lg">
<i class="fas fa-map-marker-alt text-accent text-xl"></i>
</div>
<div class="ml-4">
<h3 class="text-lg font-bold text-primary">Our Location</h3>
<p class="text-gray-600 mt-1">123 Innovation Drive, Tech Park, San Francisco, CA 94103</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-100 p-3 rounded-lg">
<i class="fas fa-envelope text-accent text-xl"></i>
</div>
<div class="ml-4">
<h3 class="text-lg font-bold text-primary">Email Us</h3>
<p class="text-gray-600 mt-1">contact@ninetech.io</p>
</div>
</div>
<div class="flex items-start">
<div class="flex-shrink-0 bg-blue-100 p-3 rounded-lg">
<i class="fas fa-phone-alt text-accent text-xl"></i>
</div>
<div class="ml-4">
<h3 class="text-lg font-bold text-primary">Call Us</h3>
<p class="text-gray-600 mt-1">+1 (555) 123-4567</p>
</div>
</div>
</div>
</div>
<div class="bg-gray-50 rounded-xl p-8 shadow-lg">
<form>
<div class="grid grid-cols-1 sm:grid-cols-2 gap-6 mb-6">
<div>
<label for="name" class="block text-sm font-medium text-gray-700 mb-1">Name</label>
<input type="text" id="name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-accent focus:border-accent">
</div>
<div>
<label for="email" class="block text-sm font-medium text-gray-700 mb-1">Email</label>
<input type="email" id="email" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-accent focus:border-accent">
</div>
</div>
<div class="mb-6">
<label for="subject" class="block text-sm font-medium text-gray-700 mb-1">Subject</label>
<input type="text" id="subject" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-accent focus:border-accent">
</div>
<div class="mb-6">
<label for="message" class="block text-sm font-medium text-gray-700 mb-1">Message</label>
<textarea id="message" rows="5" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-accent focus:border-accent"></textarea>
</div>
<button type="submit" class="w-full bg-accent hover:bg-blue-600 text-white font-bold py-3 px-6 rounded-lg transition duration-300">
Send Message
</button>
</form>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-dark text-white pt-16 pb-8">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="grid grid-cols-1 md:grid-cols-4 gap-10 mb-12">
<div>
<div class="flex items-center mb-6">
<div class="bg-accent w-10 h-10 rounded-lg flex items-center justify-center">
<i class="fas fa-microchip text-white text-xl"></i>
</div>
<span class="ml-3 text-2xl font-bold">Nine<span class="text-accent">Tech</span></span>
</div>
<p class="text-gray-400 mb-6">
Leading embedded software solutions for innovative companies worldwide.
</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-linkedin-in"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-github"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-twitter"></i></a>
<a href="#" class="text-gray-400 hover:text-white"><i class="fab fa-youtube"></i></a>
</div>
</div>
<div>
<h3 class="text-lg font-bold mb-6">Services</h3>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white">Firmware Development</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">IoT Integration</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Security Solutions</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">System Architecture</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Product Development</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-6">Company</h3>
<ul class="space-y-3">
<li><a href="#" class="text-gray-400 hover:text-white">About Us</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Our Team</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Careers</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Blog</a></li>
<li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
</ul>
</div>
<div>
<h3 class="text-lg font-bold mb-6">Newsletter</h3>
<p class="text-gray-400 mb-4">
Subscribe to our newsletter for the latest updates and insights.
</p>
<form class="flex">
<input type="email" placeholder="Your email" class="px-4 py-2 w-full rounded-l-lg focus:outline-none text-gray-800">
<button class="bg-accent hover:bg-blue-600 px-4 rounded-r-lg">
<i class="fas fa-paper-plane text-white"></i>
</button>
</form>
</div>
</div>
<div class="border-t border-gray-800 pt-8 text-center text-gray-500">
<p>&copy; 2023 NineTech. All rights reserved.</p>
</div>
</div>
</footer>
<script>
// Mobile menu toggle
const mobileMenuButton = document.getElementById('mobile-menu-button');
const mobileMenu = document.getElementById('mobile-menu');
mobileMenuButton.addEventListener('click', () => {
mobileMenu.classList.toggle('hidden');
});
// Smooth scrolling for anchor links
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
const target = document.querySelector(this.getAttribute('href'));
if (target) {
window.scrollTo({
top: target.offsetTop - 80,
behavior: 'smooth'
});
// Close mobile menu if open
if (!mobileMenu.classList.contains('hidden')) {
mobileMenu.classList.add('hidden');
}
}
});
});
// Add scroll animation to elements
const observerOptions = {
root: null,
rootMargin: '0px',
threshold: 0.1
};
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('animate-fade-in-up');
observer.unobserve(entry.target);
}
});
}, observerOptions);
document.querySelectorAll('.service-card, .team-card').forEach(card => {
observer.observe(card);
});
</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=OrcsRise/ninetech" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>