Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>TekGuyz | Expert DevOps Consulting Services</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"> | |
| <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet"> | |
| <script> | |
| tailwind.config = { | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: '#4285F4', // Google Blue | |
| secondary: '#f1f3f4', // Light gray | |
| accent1: '#EA4335', // Google Red | |
| accent2: '#FBBC05', // Google Yellow | |
| accent3: '#34A853', // Google Green | |
| googleGray: '#5F6368', // Google Gray | |
| }, | |
| fontFamily: { | |
| sans: ['Inter', 'sans-serif'], | |
| }, | |
| } | |
| } | |
| } | |
| </script> | |
| <style> | |
| .gradient-bg { | |
| background: linear-gradient(135deg, #4285F4 0%, #34A853 100%); | |
| } | |
| .service-card:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); | |
| } | |
| .nav-link { | |
| color: #5F6368; | |
| transition: all 0.2s ease; | |
| position: relative; | |
| } | |
| .nav-link:hover { | |
| color: #4285F4; | |
| } | |
| .nav-link:hover::after { | |
| content: ''; | |
| position: absolute; | |
| bottom: -8px; | |
| left: 0; | |
| width: 100%; | |
| height: 3px; | |
| background-color: #4285F4; | |
| border-radius: 3px; | |
| } | |
| .btn-primary { | |
| background-color: #4285F4; | |
| color: white; | |
| transition: all 0.3s ease; | |
| box-shadow: 0 2px 5px rgba(66, 133, 244, 0.3); | |
| } | |
| .btn-primary:hover { | |
| background-color: #3367D6; | |
| transform: translateY(-2px); | |
| box-shadow: 0 4px 8px rgba(66, 133, 244, 0.4); | |
| } | |
| .btn-accent { | |
| background-color: #EA4335; | |
| color: white; | |
| transition: all 0.3s ease; | |
| box-shadow: 0 2px 5px rgba(234, 67, 53, 0.3); | |
| } | |
| .btn-accent:hover { | |
| background-color: #D33426; | |
| transform: translateY(-2px); | |
| box-shadow: 0 4px 8px rgba(234, 67, 53, 0.4); | |
| } | |
| .btn-secondary { | |
| background-color: #FBBC05; | |
| color: #202124; | |
| transition: all 0.3s ease; | |
| box-shadow: 0 2px 5px rgba(251, 188, 5, 0.3); | |
| } | |
| .btn-secondary:hover { | |
| background-color: #E9AB04; | |
| transform: translateY(-2px); | |
| box-shadow: 0 4px 8px rgba(251, 188, 5, 0.4); | |
| } | |
| .btn-success { | |
| background-color: #34A853; | |
| color: white; | |
| transition: all 0.3s ease; | |
| box-shadow: 0 2px 5px rgba(52, 168, 83, 0.3); | |
| } | |
| .btn-success:hover { | |
| background-color: #2D9146; | |
| transform: translateY(-2px); | |
| box-shadow: 0 4px 8px rgba(52, 168, 83, 0.4); | |
| } | |
| .animate-float { | |
| animation: float 3s ease-in-out infinite; | |
| } | |
| @keyframes float { | |
| 0% { transform: translateY(0px); } | |
| 50% { transform: translateY(-10px); } | |
| 100% { transform: translateY(0px); } | |
| } | |
| .google-logo-style { | |
| font-weight: 500; | |
| letter-spacing: -1px; | |
| } | |
| .google-blue { color: #4285F4; } | |
| .google-red { color: #EA4335; } | |
| .google-yellow { color: #FBBC05; } | |
| .google-green { color: #34A853; } | |
| /* Form styling */ | |
| .form-input { | |
| border: 1px solid #dadce0; | |
| border-radius: 4px; | |
| transition: all 0.2s ease; | |
| } | |
| .form-input:focus { | |
| border-color: #4285F4; | |
| box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2); | |
| outline: none; | |
| } | |
| .form-label { | |
| color: #5F6368; | |
| font-weight: 500; | |
| } | |
| /* Menu styling */ | |
| .mobile-menu-btn { | |
| color: #5F6368; | |
| } | |
| .mobile-menu-btn:hover { | |
| color: #4285F4; | |
| } | |
| </style> | |
| </head> | |
| <body class="font-sans text-gray-800"> | |
| <!-- Navigation --> | |
| <nav class="bg-white shadow-md sticky top-0 z-50"> | |
| <div class="container mx-auto px-6 py-3"> | |
| <div class="flex items-center justify-between"> | |
| <div class="flex items-center"> | |
| <a href="#" class="text-2xl font-bold google-logo-style"> | |
| <span class="google-blue">T</span> | |
| <span class="google-red">e</span> | |
| <span class="google-yellow">k</span> | |
| <span class="google-blue">G</span> | |
| <span class="google-green">u</span> | |
| <span class="google-red">y</span> | |
| <span class="google-yellow">z</span> | |
| </a> | |
| </div> | |
| <div class="hidden md:flex items-center space-x-8"> | |
| <a href="#home" class="nav-link text-gray-700 hover:text-primary">Home</a> | |
| <a href="#services" class="nav-link text-gray-700 hover:text-primary">Services</a> | |
| <a href="#about" class="nav-link text-gray-700 hover:text-primary">About</a> | |
| <a href="#portfolio" class="nav-link text-gray-700 hover:text-primary">Portfolio</a> | |
| <a href="#contact" class="nav-link text-gray-700 hover:text-primary">Contact</a> | |
| <a href="#contact" class="btn-primary px-6 py-2 rounded-md font-medium">Get Started</a> | |
| </div> | |
| <div class="md:hidden"> | |
| <button class="mobile-menu-btn focus:outline-none"> | |
| <i class="fas fa-bars text-2xl"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <section id="home" class="gradient-bg text-white py-20"> | |
| <div class="container mx-auto px-6 flex flex-col md:flex-row items-center"> | |
| <div class="md:w-1/2 mb-10 md:mb-0"> | |
| <h1 class="text-4xl md:text-5xl font-bold leading-tight mb-4">Empowering Your Digital Transformation with Expert DevOps Solutions</h1> | |
| <p class="text-xl mb-8">Accelerate development cycles, improve software quality, and enhance operational efficiency with our tailored DevOps services.</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-3 rounded-md font-bold text-center">Request a Consultation</a> | |
| <a href="#services" class="btn-accent px-8 py-3 rounded-md font-bold text-center">Our Services</a> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2 flex justify-center"> | |
| <img src="https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="DevOps Team" class="rounded-lg shadow-xl w-full max-w-md animate-float"> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Introduction Section --> | |
| <section class="py-16 bg-white"> | |
| <div class="container mx-auto px-6"> | |
| <div class="max-w-4xl mx-auto text-center"> | |
| <h2 class="text-3xl font-bold mb-6">Streamline Your Software Development Lifecycle</h2> | |
| <p class="text-xl text-gray-600 mb-8">We are a dedicated DevOps team passionate about streamlining your software development lifecycle. We empower businesses to achieve faster deployments, enhanced collaboration, and greater operational efficiency through tailored DevOps solutions. Let's transform your development process together.</p> | |
| <div class="flex justify-center space-x-4"> | |
| <div class="bg-primary text-white px-4 py-2 rounded-full text-sm font-medium">CI/CD Pipelines</div> | |
| <div class="bg-accent2 text-gray-800 px-4 py-2 rounded-full text-sm font-medium">Cloud Solutions</div> | |
| <div class="bg-accent3 text-white px-4 py-2 rounded-full text-sm font-medium">Infrastructure as Code</div> | |
| <div class="bg-accent1 text-white px-4 py-2 rounded-full text-sm font-medium">Security First</div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Services Section --> | |
| <section id="services" class="py-16 bg-gray-50"> | |
| <div class="container mx-auto px-6"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl font-bold mb-4">Our DevOps Services</h2> | |
| <p class="text-xl text-gray-600 max-w-2xl mx-auto">Comprehensive solutions to accelerate your development and operations</p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <!-- Service 1 --> | |
| <div class="service-card bg-white p-8 rounded-lg shadow-md transition duration-300"> | |
| <div class="w-16 h-16 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mb-6"> | |
| <i class="fas fa-chart-line text-primary text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-4">DevOps Consulting</h3> | |
| <p class="text-gray-600 mb-4">Strategy development, roadmap creation, and process optimization to transform your workflows.</p> | |
| <ul class="space-y-2 mb-6"> | |
| <li class="flex items-center"><i class="fas fa-check text-primary mr-2"></i> Process assessment</li> | |
| <li class="flex items-center"><i class="fas fa-check text-primary mr-2"></i> Implementation roadmap</li> | |
| <li class="flex items-center"><i class="fas fa-check text-primary mr-2"></i> Best practices</li> | |
| </ul> | |
| <a href="#" class="text-primary font-medium flex items-center">Learn more <i class="fas fa-arrow-right ml-2"></i></a> | |
| </div> | |
| <!-- Service 2 --> | |
| <div class="service-card bg-white p-8 rounded-lg shadow-md transition duration-300"> | |
| <div class="w-16 h-16 bg-accent1 bg-opacity-10 rounded-full flex items-center justify-center mb-6"> | |
| <i class="fas fa-code text-accent1 text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-4">Custom Software Development</h3> | |
| <p class="text-gray-600 mb-4">Building scalable and reliable applications tailored to your business needs.</p> | |
| <ul class="space-y-2 mb-6"> | |
| <li class="flex items-center"><i class="fas fa-check text-accent1 mr-2"></i> Microservices architecture</li> | |
| <li class="flex items-center"><i class="fas fa-check text-accent1 mr-2"></i> Containerization</li> | |
| <li class="flex items-center"><i class="fas fa-check text-accent1 mr-2"></i> API development</li> | |
| </ul> | |
| <a href="#" class="text-accent1 font-medium flex items-center">Learn more <i class="fas fa-arrow-right ml-2"></i></a> | |
| </div> | |
| <!-- Service 3 --> | |
| <div class="service-card bg-white p-8 rounded-lg shadow-md transition duration-300"> | |
| <div class="w-16 h-16 bg-accent2 bg-opacity-10 rounded-full flex items-center justify-center mb-6"> | |
| <i class="fas fa-bug text-accent2 text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-4">QA and Testing</h3> | |
| <p class="text-gray-600 mb-4">Ensuring software quality through automation and performance testing.</p> | |
| <ul class="space-y-2 mb-6"> | |
| <li class="flex items-center"><i class="fas fa-check text-accent2 mr-2"></i> Test automation</li> | |
| <li class="flex items-center"><i class="fas fa-check text-accent2 mr-2"></i> Performance testing</li> | |
| <li class="flex items-center"><i class="fas fa-check text-accent2 mr-2"></i> Security testing</li> | |
| </ul> | |
| <a href="#" class="text-accent2 font-medium flex items-center">Learn more <i class="fas fa-arrow-right ml-2"></i></a> | |
| </div> | |
| <!-- Service 4 --> | |
| <div class="service-card bg-white p-8 rounded-lg shadow-md transition duration-300"> | |
| <div class="w-16 h-16 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mb-6"> | |
| <i class="fas fa-cloud text-primary text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-4">Cloud Services</h3> | |
| <p class="text-gray-600 mb-4">Cloud migration, infrastructure management, and optimization on AWS, Azure, and GCP.</p> | |
| <ul class="space-y-2 mb-6"> | |
| <li class="flex items-center"><i class="fas fa-check text-primary mr-2"></i> Cloud architecture</li> | |
| <li class="flex items-center"><i class="fas fa-check text-primary mr-2"></i> Cost optimization</li> | |
| <li class="flex items-center"><i class="fas fa-check text-primary mr-2"></i> Multi-cloud solutions</li> | |
| </ul> | |
| <a href="#" class="text-primary font-medium flex items-center">Learn more <i class="fas fa-arrow-right ml-2"></i></a> | |
| </div> | |
| <!-- Service 5 --> | |
| <div class="service-card bg-white p-8 rounded-lg shadow-md transition duration-300"> | |
| <div class="w-16 h-16 bg-accent3 bg-opacity-10 rounded-full flex items-center justify-center mb-6"> | |
| <i class="fas fa-robot text-accent3 text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-4">Automation & Orchestration</h3> | |
| <p class="text-gray-600 mb-4">CI/CD pipeline implementation, infrastructure as code, and workflow automation.</p> | |
| <ul class="space-y-2 mb-6"> | |
| <li class="flex items-center"><i class="fas fa-check text-accent3 mr-2"></i> Deployment automation</li> | |
| <li class="flex items-center"><i class="fas fa-check text-accent3 mr-2"></i> Terraform & Ansible</li> | |
| <li class="flex items-center"><i class="fas fa-check text-accent3 mr-2"></i> Kubernetes orchestration</li> | |
| </ul> | |
| <a href="#" class="text-accent3 font-medium flex items-center">Learn more <i class="fas fa-arrow-right ml-2"></i></a> | |
| </div> | |
| <!-- Service 6 --> | |
| <div class="service-card bg-white p-8 rounded-lg shadow-md transition duration-300"> | |
| <div class="w-16 h-16 bg-accent1 bg-opacity-10 rounded-full flex items-center justify-center mb-6"> | |
| <i class="fas fa-shield-alt text-accent1 text-2xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-4">Security & Compliance</h3> | |
| <p class="text-gray-600 mb-4">DevSecOps practices, security audits, and compliance adherence for your peace of mind.</p> | |
| <ul class="space-y-2 mb-6"> | |
| <li class="flex items-center"><i class="fas fa-check text-accent1 mr-2"></i> Security integration</li> | |
| <li class="flex items-center"><i class="fas fa-check text-accent1 mr-2"></i> Compliance frameworks</li> | |
| <li class="flex items-center"><i class="fas fa-check text-accent1 mr-2"></i> Vulnerability scanning</li> | |
| </ul> | |
| <a href="#" class="text-accent1 font-medium flex items-center">Learn more <i class="fas fa-arrow-right ml-2"></i></a> | |
| </div> | |
| </div> | |
| <div class="text-center mt-16"> | |
| <a href="#contact" class="btn-primary px-8 py-3 rounded-md font-bold inline-block">Get a Free Quote</a> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Why Choose Us Section --> | |
| <section class="py-16 bg-white"> | |
| <div class="container mx-auto px-6"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl font-bold mb-4">Why Choose TekGuyz?</h2> | |
| <p class="text-xl text-gray-600 max-w-2xl mx-auto">We deliver exceptional value through our unique approach</p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
| <div class="text-center p-6"> | |
| <div class="w-20 h-20 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mx-auto mb-6"> | |
| <i class="fas fa-medal text-primary text-3xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Proven Expertise</h3> | |
| <p class="text-gray-600">Our team consists of certified DevOps professionals with years of hands-on experience across industries.</p> | |
| </div> | |
| <div class="text-center p-6"> | |
| <div class="w-20 h-20 bg-accent2 bg-opacity-10 rounded-full flex items-center justify-center mx-auto mb-6"> | |
| <i class="fas fa-lightbulb text-accent2 text-3xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Tailored Solutions</h3> | |
| <p class="text-gray-600">We don't believe in one-size-fits-all. Every solution is customized to your specific business needs.</p> | |
| </div> | |
| <div class="text-center p-6"> | |
| <div class="w-20 h-20 bg-accent1 bg-opacity-10 rounded-full flex items-center justify-center mx-auto mb-6"> | |
| <i class="fas fa-headset text-accent1 text-3xl"></i> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Ongoing Support</h3> | |
| <p class="text-gray-600">Our relationship doesn't end at implementation. We provide continuous support and optimization.</p> | |
| </div> | |
| </div> | |
| <div class="mt-16 bg-gray-50 rounded-lg p-8 md:p-12"> | |
| <div class="flex flex-col md:flex-row items-center"> | |
| <div class="md:w-1/2 mb-8 md:mb-0"> | |
| <h3 class="text-2xl font-bold mb-4">Our Success Metrics</h3> | |
| <div class="space-y-6"> | |
| <div> | |
| <div class="flex items-center mb-2"> | |
| <span class="text-3xl font-bold text-primary mr-2">85%</span> | |
| <span class="text-gray-600">Faster Deployments</span> | |
| </div> | |
| <div class="w-full bg-gray-200 rounded-full h-2.5"> | |
| <div class="bg-primary h-2.5 rounded-full" style="width: 85%"></div> | |
| </div> | |
| </div> | |
| <div> | |
| <div class="flex items-center mb-2"> | |
| <span class="text-3xl font-bold text-accent2 mr-2">90%</span> | |
| <span class="text-gray-600">Reduced Downtime</span> | |
| </div> | |
| <div class="w-full bg-gray-200 rounded-full h-2.5"> | |
| <div class="bg-accent2 h-2.5 rounded-full" style="width: 90%"></div> | |
| </div> | |
| </div> | |
| <div> | |
| <div class="flex items-center mb-2"> | |
| <span class="text-3xl font-bold text-accent1 mr-2">70%</span> | |
| <span class="text-gray-600">Cost Savings</span> | |
| </div> | |
| <div class="w-full bg-gray-200 rounded-full h-2.5"> | |
| <div class="bg-accent1 h-2.5 rounded-full" style="width: 70%"></div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2 md:pl-12"> | |
| <h3 class="text-2xl font-bold mb-4">Client Testimonials</h3> | |
| <div class="space-y-6"> | |
| <div class="bg-white p-6 rounded-lg shadow-sm"> | |
| <div class="flex items-center mb-4"> | |
| <div class="w-12 h-12 bg-primary rounded-full flex items-center justify-center text-white font-bold">JD</div> | |
| <div class="ml-4"> | |
| <h4 class="font-bold">John Doe</h4> | |
| <p class="text-gray-600 text-sm">CTO, TechCorp</p> | |
| </div> | |
| </div> | |
| <p class="text-gray-600">"TekGuyz transformed our deployment process from a weekly nightmare to a seamless daily routine. Their expertise in CI/CD pipelines saved us countless hours."</p> | |
| <div class="flex mt-3"> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| <i class="fas fa-star text-yellow-400"></i> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Client Logos Section --> | |
| <section class="py-12 bg-gray-50"> | |
| <div class="container mx-auto px-6"> | |
| <h3 class="text-center text-xl font-medium text-gray-500 mb-8">Trusted by innovative companies worldwide</h3> | |
| <div class="flex flex-wrap justify-center items-center gap-8 md:gap-16"> | |
| <div class="text-2xl font-bold text-gray-700 opacity-70">TechCorp</div> | |
| <div class="text-2xl font-bold text-gray-700 opacity-70">CloudNine</div> | |
| <div class="text-2xl font-bold text-gray-700 opacity-70">DataSystems</div> | |
| <div class="text-2xl font-bold text-gray-700 opacity-70">SecureNet</div> | |
| <div class="text-2xl font-bold text-gray-700 opacity-70">AppWorks</div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- About Us Section --> | |
| <section id="about" class="py-16 bg-white"> | |
| <div class="container mx-auto px-6"> | |
| <div class="flex flex-col md:flex-row items-center"> | |
| <div class="md:w-1/2 mb-10 md:mb-0"> | |
| <h2 class="text-3xl font-bold mb-6">Our Story</h2> | |
| <p class="text-gray-600 mb-6">Founded in 2020, TekGuyz began as a small team of passionate DevOps engineers with a vision to simplify complex technology landscapes for businesses of all sizes.</p> | |
| <p class="text-gray-600 mb-6">Today, we've grown into a trusted partner for organizations looking to accelerate their digital transformation through innovative DevOps practices.</p> | |
| <p class="text-gray-600 mb-8">Our mission is to bridge the gap between development and operations, creating seamless workflows that drive business value.</p> | |
| <a href="#contact" class="btn-primary px-8 py-3 rounded-md font-bold inline-block">Meet Our Team</a> | |
| </div> | |
| <div class="md:w-1/2 md:pl-12"> | |
| <img src="https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" alt="Our Team" class="rounded-lg shadow-xl w-full"> | |
| </div> | |
| </div> | |
| <div class="mt-20"> | |
| <h2 class="text-3xl font-bold mb-8 text-center">Our Approach</h2> | |
| <div class="grid grid-cols-1 md:grid-cols-3 gap-8"> | |
| <div class="bg-gray-50 p-6 rounded-lg"> | |
| <div class="w-12 h-12 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mb-4"> | |
| <span class="text-primary font-bold">1</span> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Assess</h3> | |
| <p class="text-gray-600">We begin by thoroughly understanding your current processes, pain points, and business objectives.</p> | |
| </div> | |
| <div class="bg-gray-50 p-6 rounded-lg"> | |
| <div class="w-12 h-12 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mb-4"> | |
| <span class="text-primary font-bold">2</span> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Design</h3> | |
| <p class="text-gray-600">Our team creates a customized DevOps roadmap tailored to your specific needs and infrastructure.</p> | |
| </div> | |
| <div class="bg-gray-50 p-6 rounded-lg"> | |
| <div class="w-12 h-12 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mb-4"> | |
| <span class="text-primary font-bold">3</span> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Implement</h3> | |
| <p class="text-gray-600">We deploy the solution with minimal disruption, ensuring smooth transition and immediate value.</p> | |
| </div> | |
| <div class="bg-gray-50 p-6 rounded-lg"> | |
| <div class="w-12 h-12 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mb-4"> | |
| <span class="text-primary font-bold">4</span> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Optimize</h3> | |
| <p class="text-gray-600">Continuous monitoring and refinement ensure your DevOps practices evolve with your business.</p> | |
| </div> | |
| <div class="bg-gray-50 p-6 rounded-lg"> | |
| <div class="w-12 h-12 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mb-4"> | |
| <span class="text-primary font-bold">5</span> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Support</h3> | |
| <p class="text-gray-600">Our ongoing support ensures your team maximizes the benefits of your DevOps transformation.</p> | |
| </div> | |
| <div class="bg-gray-50 p-6 rounded-lg"> | |
| <div class="w-12 h-12 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mb-4"> | |
| <span class="text-primary font-bold">6</span> | |
| </div> | |
| <h3 class="text-xl font-bold mb-3">Educate</h3> | |
| <p class="text-gray-600">We empower your team with knowledge transfer and training for long-term success.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Portfolio Section --> | |
| <section id="portfolio" class="py-16 bg-gray-50"> | |
| <div class="container mx-auto px-6"> | |
| <div class="text-center mb-16"> | |
| <h2 class="text-3xl font-bold mb-4">Our Portfolio</h2> | |
| <p class="text-xl text-gray-600 max-w-2xl mx-auto">Success stories from our satisfied clients</p> | |
| </div> | |
| <div class="grid grid-cols-1 md:grid-cols-2 gap-8"> | |
| <!-- Case Study 1 --> | |
| <div class="bg-white rounded-lg shadow-md overflow-hidden"> | |
| <div class="h-48 bg-gradient-to-r from-primary to-accent3 flex items-center justify-center"> | |
| <i class="fas fa-server text-white text-5xl"></i> | |
| </div> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-bold mb-3">E-commerce Platform Migration</h3> | |
| <p class="text-gray-600 mb-4">Migrated a high-traffic e-commerce platform to AWS with zero downtime during peak season.</p> | |
| <div class="flex flex-wrap gap-2 mb-4"> | |
| <span class="bg-gray-100 px-3 py-1 rounded-full text-sm">AWS</span> | |
| <span class="bg-gray-100 px-3 py-1 rounded-full text-sm">Terraform</span> | |
| <span class="bg-gray-100 px-3 py-1 rounded-full text-sm">Kubernetes</span> | |
| </div> | |
| <a href="#" class="text-primary font-medium flex items-center">Read case study <i class="fas fa-arrow-right ml-2"></i></a> | |
| </div> | |
| </div> | |
| <!-- Case Study 2 --> | |
| <div class="bg-white rounded-lg shadow-md overflow-hidden"> | |
| <div class="h-48 bg-gradient-to-r from-accent1 to-accent2 flex items-center justify-center"> | |
| <i class="fas fa-lock text-white text-5xl"></i> | |
| </div> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-bold mb-3">Financial Services Security</h3> | |
| <p class="text-gray-600 mb-4">Implemented DevSecOps practices for a fintech startup to achieve SOC 2 compliance in record time.</p> | |
| <div class="flex flex-wrap gap-2 mb-4"> | |
| <span class="bg-gray-100 px-3 py-1 rounded-full text-sm">Security</span> | |
| <span class="bg-gray-100 px-3 py-1 rounded-full text-sm">Compliance</span> | |
| <span class="bg-gray-100 px-3 py-1 rounded-full text-sm">Azure</span> | |
| </div> | |
| <a href="#" class="text-primary font-medium flex items-center">Read case study <i class="fas fa-arrow-right ml-2"></i></a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="text-center mt-12"> | |
| <a href="#" class="btn-primary px-8 py-3 rounded-md font-bold inline-block">View All Case Studies</a> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- CTA Section --> | |
| <section class="py-20 gradient-bg text-white"> | |
| <div class="container mx-auto px-6 text-center"> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-6">Ready to Transform Your DevOps?</h2> | |
| <p class="text-xl mb-8 max-w-2xl mx-auto">Let's discuss how we can help you achieve faster deployments, better collaboration, and superior software quality.</p> | |
| <a href="#contact" class="btn-primary bg-white text-primary px-8 py-3 rounded-md font-bold inline-block">Get Started Today</a> | |
| </div> | |
| </section> | |
| <!-- Contact Section --> | |
| <section id="contact" class="py-16 bg-white"> | |
| <div class="container mx-auto px-6"> | |
| <div class="flex flex-col md:flex-row"> | |
| <div class="md:w-1/2 mb-10 md:mb-0 md:pr-12"> | |
| <h2 class="text-3xl font-bold mb-6">Get In Touch</h2> | |
| <p class="text-gray-600 mb-8">Have questions about our services or want to discuss your project? Reach out to our team—we'd love to hear from you.</p> | |
| <div class="space-y-6"> | |
| <div class="flex items-start"> | |
| <div class="w-10 h-10 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mr-4"> | |
| <i class="fas fa-envelope text-primary"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-1">Email Us</h4> | |
| <a href="mailto:4tekguyz@gmail.com" class="text-gray-600 hover:text-primary">4tekguyz@gmail.com</a> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="w-10 h-10 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mr-4"> | |
| <i class="fas fa-phone text-primary"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-1">Call Us</h4> | |
| <a href="tel:3058575258" class="text-gray-600 hover:text-primary">(305) 857-5258</a> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <div class="w-10 h-10 bg-primary bg-opacity-10 rounded-full flex items-center justify-center mr-4"> | |
| <i class="fas fa-map-marker-alt text-primary"></i> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-1">Based In</h4> | |
| <p class="text-gray-600">Miami, Florida</p> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="mt-10"> | |
| <h4 class="font-bold mb-4">Follow Us</h4> | |
| <div class="flex space-x-4"> | |
| <a href="https://linkedin.com/company/tekguyz" target="_blank" class="w-10 h-10 bg-gray-100 rounded-full flex items-center justify-center text-gray-700 hover:bg-primary hover:text-white transition"> | |
| <i class="fab fa-linkedin-in"></i> | |
| </a> | |
| <a href="https://www.facebook.com/profile.php?id=61576249058116" target="_blank" class="w-10 h-10 bg-gray-100 rounded-full flex items-center justify-center text-gray-700 hover:bg-primary hover:text-white transition"> | |
| <i class="fab fa-facebook-f"></i> | |
| </a> | |
| <a href="https://www.instagram.com/TekGuyz" target="_blank" class="w-10 h-10 bg-gray-100 rounded-full flex items-center justify-center text-gray-700 hover:bg-primary hover:text-white transition"> | |
| <i class="fab fa-instagram"></i> | |
| </a> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2"> | |
| <form class="bg-gray-50 p-8 rounded-lg shadow-sm"> | |
| <h3 class="text-xl font-bold mb-6">Send Us a Message</h3> | |
| <div class="mb-6"> | |
| <label for="name" class="form-label block mb-2">Name</label> | |
| <input type="text" id="name" class="form-input w-full px-4 py-3" placeholder="Your name"> | |
| </div> | |
| <div class="mb-6"> | |
| <label for="email" class="form-label block mb-2">Email</label> | |
| <input type="email" id="email" class="form-input w-full px-4 py-3" placeholder="Your email"> | |
| </div> | |
| <div class="mb-6"> | |
| <label for="company" class="form-label block mb-2">Company</label> | |
| <input type="text" id="company" class="form-input w-full px-4 py-3" placeholder="Your company"> | |
| </div> | |
| <div class="mb-6"> | |
| <label for="message" class="form-label block mb-2">Message</label> | |
| <textarea id="message" rows="5" class="form-input w-full px-4 py-3" placeholder="How can we help you?"></textarea> | |
| </div> | |
| <button type="submit" class="btn-primary w-full py-3 rounded-md font-bold">Send Message</button> | |
| </form> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-gray-900 text-white py-12"> | |
| <div class="container mx-auto px-6"> | |
| <div class="grid grid-cols-1 md:grid-cols-4 gap-8"> | |
| <div> | |
| <a href="#" class="text-2xl font-bold google-logo-style mb-4 inline-block"> | |
| <span class="google-blue">T</span> | |
| <span class="google-red">e</span> | |
| <span class="google-yellow">k</span> | |
| <span class="google-blue">G</span> | |
| <span class="google-green">u</span> | |
| <span class="google-red">y</span> | |
| <span class="google-yellow">z</span> | |
| </a> | |
| <p class="text-gray-400 mb-4">Empowering your digital transformation through expert DevOps solutions.</p> | |
| <div class="flex space-x-4"> | |
| <a href="https://linkedin.com/company/tekguyz" target="_blank" class="text-gray-400 hover:text-white"> | |
| <i class="fab fa-linkedin-in"></i> | |
| </a> | |
| <a href="https://www.facebook.com/profile.php?id=61576249058116" target="_blank" class="text-gray-400 hover:text-white"> | |
| <i class="fab fa-facebook-f"></i> | |
| </a> | |
| <a href="https://www.instagram.com/TekGuyz" target="_blank" class="text-gray-400 hover:text-white"> | |
| <i class="fab fa-instagram"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-bold mb-4">Services</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="text-gray-400 hover:text-white">DevOps Consulting</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Custom Software</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">QA and Testing</a></li> | |
| <li><a href="#" class="text-gray-400 hover:text-white">Cloud Services</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-bold mb-4">Company</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#about" class="text-gray-400 hover:text-white">About Us</a></li> | |
| <li><a href="#portfolio" class="text-gray-400 hover:text-white">Portfolio</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> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="text-lg font-bold mb-4">Contact</h4> | |
| <ul class="space-y-2"> | |
| <li class="text-gray-400">4tekguyz@gmail.com</li> | |
| <li class="text-gray-400">(305) 857-5258</li> | |
| <li class="text-gray-400">Miami, Florida</li> | |
| </ul> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center"> | |
| <p class="text-gray-400 mb-4 md:mb-0">© 2023 TekGuyz. All rights reserved.</p> | |
| <div class="flex space-x-6"> | |
| <a href="#" class="text-gray-400 hover:text-white">Privacy Policy</a> | |
| <a href="#" class="text-gray-400 hover:text-white">Terms of Service</a> | |
| <a href="#" class="text-gray-400 hover:text-white">Sitemap</a> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| // Simple form submission handler | |
| document.querySelector('form').addEventListener('submit', function(e) { | |
| e.preventDefault(); | |
| alert('Thank you for your message! We will get back to you soon.'); | |
| this.reset(); | |
| }); | |
| // Mobile menu toggle functionality would go here | |
| // This is a placeholder for actual implementation | |
| </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=techguy1/techguyzbadcolor" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
| </html> |