Spaces:
Running
Running
Create me a IT Support website it should have black-and-white mobile friendly. It should also have all the images and the easier focused for the London market.
bcc0cd0 verified | <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>TechSquad London - IT Support Services</title> | |
| <link rel="icon" type="image/x-icon" href="/static/favicon.ico"> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://unpkg.com/feather-icons"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script> | |
| <script> | |
| tailwind.config = { | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: '#000000', | |
| secondary: '#ffffff' | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| </head> | |
| <body class="bg-white text-black font-sans"> | |
| <!-- Navigation --> | |
| <nav class="bg-primary text-secondary py-4 px-6 sticky top-0 z-50 shadow-lg"> | |
| <div class="container mx-auto flex justify-between items-center"> | |
| <a href="#" class="text-2xl font-bold">TechSquad London</a> | |
| <div class="hidden md:flex space-x-8"> | |
| <a href="#services" class="hover:text-gray-300 transition">Services</a> | |
| <a href="#about" class="hover:text-gray-300 transition">About</a> | |
| <a href="#contact" class="hover:text-gray-300 transition">Contact</a> | |
| </div> | |
| <button class="md:hidden"> | |
| <i data-feather="menu"></i> | |
| </button> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <section class="relative bg-gradient-to-r from-primary to-gray-900 text-secondary py-20 px-6"> | |
| <div class="container mx-auto text-center"> | |
| <h1 class="text-4xl md:text-6xl font-bold mb-4">London's Premier IT Support</h1> | |
| <p class="text-xl md:text-2xl mb-8">24/7 IT solutions for London businesses</p> | |
| <div class="space-x-4"> | |
| <button class="bg-secondary text-primary px-8 py-3 rounded-lg font-semibold hover:bg-gray-200 transition">Emergency Support</button> | |
| <button class="border-2 border-secondary text-secondary px-8 py-3 rounded-lg font-semibold hover:bg-secondary hover:text-primary transition">Schedule Consultation</button> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Services Section --> | |
| <section id="services" class="py-20 px-6"> | |
| <div class="container mx-auto"> | |
| <h2 class="text-3xl md:text-4xl font-bold text-center mb-12">Our Services</h2> | |
| <div class="grid md:grid-cols-3 gap-8"> | |
| <!-- Service 1 --> | |
| <div class="bg-gray-50 p-6 rounded-lg shadow-lg"> | |
| <i data-feather="shield" class="w-12 h-12 text-primary mb-4"></i> | |
| <h3 class="text-xl font-bold mb-2">Cybersecurity</h3> | |
| <p class="text-gray-600">Protect your business from cyber threats with our comprehensive security solutions.</p> | |
| </div> | |
| <!-- Service 2 --> | |
| <div class="bg-gray-50 p-6 rounded-lg shadow-lg"> | |
| <i data-feather="cloud" class="w-12 h-12 text-primary mb-4"></i> | |
| <h3 class="text-xl font-bold mb-2">Cloud Solutions</h3> | |
| <p class="text-gray-600">Migrate to the cloud with our expert guidance and support services.</p> | |
| </div> | |
| <!-- Service 3 --> | |
| <div class="bg-gray-50 p-6 rounded-lg shadow-lg"> | |
| <i data-feather="wifi" class="w-12 h-12 text-primary mb-4"></i> | |
| <h3 class="text-xl font-bold mb-2">Network Support</h3> | |
| <p class="text-gray-600">Keep your business connected with reliable network infrastructure.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- About Section --> | |
| <section id="about" class="bg-primary text-secondary py-20 px-6"> | |
| <div class="container mx-auto"> | |
| <div class="grid md:grid-cols-2 gap-12 items-center"> | |
| <div> | |
| <h2 class="text-3xl md:text-4xl font-bold mb-6">Serving London Businesses Since 2010</h2> | |
| <p class="text-lg mb-4">We understand the unique IT challenges faced by London-based companies. Our team of certified professionals provides tailored solutions for businesses across the capital.</p> | |
| <p class="text-lg">From the City to Canary Wharf, we're your local IT support partner.</p> | |
| </div> | |
| <div> | |
| <img src="http://static.photos/office/640x360/1" alt="London Office" class="rounded-lg shadow-2xl"> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Contact Section --> | |
| <section id="contact" class="py-20 px-6"> | |
| <div class="container mx-auto max-w-4xl"> | |
| <h2 class="text-3xl md:text-4xl font-bold text-center mb-12">Get in Touch</h2> | |
| <div class="bg-gray-50 p-8 rounded-lg shadow-lg"> | |
| <form class="space-y-6"> | |
| <div class="grid md:grid-cols-2 gap-6"> | |
| <input type="text" placeholder="Name" class="w-full p-3 border border-gray-300 rounded"> | |
| <input type="email" placeholder="Email" class="w-full p-3 border border-gray-300 rounded"> | |
| </div> | |
| <input type="text" placeholder="Company" class="w-full p-3 border border-gray-300 rounded"> | |
| <textarea placeholder="How can we help you?" class="w-full p-3 border border-gray-300 rounded h-32"></textarea> | |
| <button type="submit" class="bg-primary text-secondary px-8 py-3 rounded-lg font-semibold hover:bg-gray-800 transition w-full">Send Message</button> | |
| </form> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-primary text-secondary py-12 px-6"> | |
| <div class="container mx-auto"> | |
| <div class="grid md:grid-cols-4 gap-8"> | |
| <div> | |
| <h3 class="text-xl font-bold mb-4">TechSquad London</h3> | |
| <p>Your trusted IT support partner in London.</p> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-4">Services</h4> | |
| <ul class="space-y-2"> | |
| <li><a href="#" class="hover:text-gray-300">Network Support</a></li> | |
| <li><a href="#" class="hover:text-gray-300">Cybersecurity</a></li> | |
| <li><a href="#" class="hover:text-gray-300">Cloud Solutions</a></li> | |
| </ul> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-4">Contact</h4> | |
| <p>020 7123 4567</p> | |
| <p>support@techsquad-london.co.uk</p> | |
| <p>London, EC2A 4NE</p> | |
| </div> | |
| <div> | |
| <h4 class="font-bold mb-4">Emergency Support</h4> | |
| <p>24/7 Helpline: 0800 123 4567</p> | |
| <button class="bg-secondary text-primary px-4 py-2 rounded mt-2 hover:bg-gray-200 transition">Emergency Call</button> | |
| </div> | |
| </div> | |
| <div class="border-t border-gray-700 mt-8 pt-8 text-center"> | |
| <p>© 2024 TechSquad London. All rights reserved.</p> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| feather.replace(); | |
| // Mobile menu toggle | |
| document.querySelector('button.md\\:hidden').addEventListener('click', function() { | |
| const nav = document.querySelector('.hidden.md\\:flex'); | |
| nav.classList.toggle('hidden'); | |
| nav.classList.toggle('flex'); | |
| nav.classList.toggle('flex-col'); | |
| nav.classList.toggle('absolute'); | |
| nav.classList.toggle('top-16'); | |
| nav.classList.toggle('left-0'); | |
| nav.classList.toggle('w-full'); | |
| nav.classList.toggle('bg-primary'); | |
| nav.classList.toggle('p-4'); | |
| nav.classList.toggle('space-y-4'); | |
| }); | |
| </script> | |
| </body> | |
| </html> | |