Spaces:
Running
Running
Hardy
Create a modern, responsive website navy in colour for a real self storage facility called "TAF storage" with a yellow line under TAF Storage. The homepage is to showcase images of shipping containers. Add the location of the facility. Add a contact section. Add "about us" section describing that having a self-storage unit provides security, flexibility, and space for belongings, which is beneficial during moves, renovations, or for a base for your small business. It offers a convenient and cost-effective way to store personal or business items
daf7dfb verified | <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>TAF Storage - Secure Self Storage Solutions</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: { | |
| navy: { | |
| 500: '#001f3f', | |
| 600: '#001a35', | |
| 700: '#00152b', | |
| } | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| <style> | |
| .hero-section { | |
| background-image: linear-gradient(rgba(0, 31, 63, 0.7), rgba(0, 31, 63, 0.7)), url('http://static.photos/industry/1200x630/5'); | |
| background-size: cover; | |
| background-position: center; | |
| height: 80vh; | |
| } | |
| .storage-unit { | |
| transition: all 0.3s ease; | |
| } | |
| .storage-unit:hover { | |
| transform: translateY(-5px); | |
| box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-gray-50"> | |
| <!-- Navigation --> | |
| <nav class="bg-navy-500 text-white shadow-lg"> | |
| <div class="container mx-auto px-6 py-3"> | |
| <div class="flex justify-between items-center"> | |
| <div class="flex items-center space-x-4"> | |
| <i data-feather="package" class="w-8 h-8 text-yellow-400"></i> | |
| <span class="text-xl font-bold relative"> | |
| <span class="text-white">TAF</span> | |
| <span class="text-yellow-400">Storage</span> | |
| <span class="absolute bottom-0 left-0 w-full h-0.5 bg-yellow-400"></span> | |
| </span> | |
| </div> | |
| <div class="hidden md:flex items-center space-x-8"> | |
| <a href="#" class="text-white hover:text-gray-300">Home</a> | |
| <a href="#about" class="text-white hover:text-gray-300">About Us</a> | |
| <a href="#location" class="text-white hover:text-gray-300">Location</a> | |
| <a href="#contact" class="text-white hover:text-gray-300">Contact</a> | |
| <button class="bg-white text-navy-500 px-4 py-2 rounded-md hover:bg-gray-100 transition">Book Now</button> | |
| </div> | |
| <button class="md:hidden focus:outline-none"> | |
| <i data-feather="menu" class="w-6 h-6 text-white"></i> | |
| </button> | |
| </div> | |
| </div> | |
| </nav> | |
| <!-- Hero Section --> | |
| <section class="hero-section flex items-center justify-center text-white"> | |
| <div class="text-center px-4"> | |
| <h1 class="text-4xl md:text-5xl font-bold mb-4">Secure Storage Solutions</h1> | |
| <p class="text-xl md:text-2xl mb-8">Safe, flexible, and convenient storage for all your needs</p> | |
| <button class="bg-white text-navy-500 px-6 py-3 rounded-md font-semibold hover:bg-gray-100 transition">Explore Our Units</button> | |
| </div> | |
| </section> | |
| <!-- Container Showcase --> | |
| <section class="py-12 bg-navy-700"> | |
| <div class="container mx-auto px-6"> | |
| <h2 class="text-3xl font-bold text-center text-white mb-12">Our Secure Container Units</h2> | |
| <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-6"> | |
| <div> | |
| <img src="http://static.photos/industry/640x360/20" alt="Shipping Container" class="rounded-lg shadow-xl w-full h-48 object-cover"> | |
| </div> | |
| <div> | |
| <img src="http://static.photos/industry/640x360/21" alt="Shipping Container Interior" class="rounded-lg shadow-xl w-full h-48 object-cover"> | |
| </div> | |
| <div> | |
| <img src="http://static.photos/industry/640x360/22" alt="Secure Containers" class="rounded-lg shadow-xl w-full h-48 object-cover"> | |
| </div> | |
| <div> | |
| <img src="http://static.photos/industry/640x360/23" alt="Container Storage" class="rounded-lg shadow-xl w-full h-48 object-cover"> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- About Us Section --> | |
| <section id="about" class="py-16 bg-white"> | |
| <div class="container mx-auto px-6"> | |
| <h2 class="text-3xl font-bold text-center text-navy-500 mb-12">Why Choose TAF Storage?</h2> | |
| <div class="flex flex-col md:flex-row items-center gap-12"> | |
| <div class="md:w-1/2"> | |
| <img src="http://static.photos/industry/640x360/24" alt="Secure Storage Facility" class="rounded-lg shadow-lg w-full"> | |
| </div> | |
| <div class="md:w-1/2"> | |
| <p class="text-gray-700 mb-6 text-lg"> | |
| TAF Storage provides premium shipping container storage solutions designed for security and convenience. Our weatherproof steel containers offer the ultimate protection for your belongings during life transitions. | |
| </p> | |
| <p class="text-gray-700 mb-6"> | |
| Whether you're moving, renovating your home, or need a secure base for your small business inventory, our storage solutions provide the perfect balance of security, flexibility and cost-effectiveness. | |
| </p> | |
| <div class="space-y-4"> | |
| <div class="flex items-start"> | |
| <i data-feather="lock" class="text-navy-500 mr-3 mt-1"></i> | |
| <div> | |
| <h3 class="font-semibold text-gray-800">Security</h3> | |
| <p class="text-gray-600">24/7 surveillance and secure access for your peace of mind.</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <i data-feather="clock" class="text-navy-500 mr-3 mt-1"></i> | |
| <div> | |
| <h3 class="font-semibold text-gray-800">Flexibility</h3> | |
| <p class="text-gray-600">Choose the size you need and change as your requirements evolve.</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <i data-feather="dollar-sign" class="text-navy-500 mr-3 mt-1"></i> | |
| <div> | |
| <h3 class="font-semibold text-gray-800">Cost-Effective</h3> | |
| <p class="text-gray-600">Affordable solutions without long-term commitments.</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Storage Units Showcase --> | |
| <section class="py-16 bg-gray-100"> | |
| <div class="container mx-auto px-6"> | |
| <h2 class="text-3xl font-bold text-center text-navy-500 mb-12">Our Storage Solutions</h2> | |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8"> | |
| <!-- Unit 1 --> | |
| <div class="storage-unit bg-white rounded-lg overflow-hidden shadow-lg"> | |
| <img src="http://static.photos/industry/640x360/1" alt="Small Storage Unit" class="w-full h-48 object-cover"> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-semibold text-navy-500 mb-2">Small Unit</h3> | |
| <p class="text-gray-600 mb-4">Perfect for boxes, small furniture, or seasonal items.</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-navy-500 font-bold">$49/month</span> | |
| <button class="bg-navy-500 text-white px-4 py-2 rounded hover:bg-navy-600 transition">Book Now</button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Unit 2 --> | |
| <div class="storage-unit bg-white rounded-lg overflow-hidden shadow-lg"> | |
| <img src="http://static.photos/industry/640x360/2" alt="Medium Storage Unit" class="w-full h-48 object-cover"> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-semibold text-navy-500 mb-2">Medium Unit</h3> | |
| <p class="text-gray-600 mb-4">Ideal for furniture sets, business inventory, or during moves.</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-navy-500 font-bold">$89/month</span> | |
| <button class="bg-navy-500 text-white px-4 py-2 rounded hover:bg-navy-600 transition">Book Now</button> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- Unit 3 --> | |
| <div class="storage-unit bg-white rounded-lg overflow-hidden shadow-lg"> | |
| <img src="http://static.photos/industry/640x360/3" alt="Large Storage Unit" class="w-full h-48 object-cover"> | |
| <div class="p-6"> | |
| <h3 class="text-xl font-semibold text-navy-500 mb-2">Large Unit</h3> | |
| <p class="text-gray-600 mb-4">Great for entire household moves or substantial business storage.</p> | |
| <div class="flex justify-between items-center"> | |
| <span class="text-navy-500 font-bold">$129/month</span> | |
| <button class="bg-navy-500 text-white px-4 py-2 rounded hover:bg-navy-600 transition">Book Now</button> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Location Section --> | |
| <section id="location" class="py-16 bg-gray-100"> | |
| <div class="container mx-auto px-6"> | |
| <h2 class="text-3xl font-bold text-center text-navy-500 mb-12">Visit Our Facility</h2> | |
| <div class="flex flex-col md:flex-row items-center gap-12"> | |
| <div class="md:w-1/2"> | |
| <div class="bg-gray-100 p-6 rounded-lg shadow-md"> | |
| <h3 class="text-xl font-semibold text-navy-500 mb-4">Visit Us</h3> | |
| <div class="space-y-4"> | |
| <div class="flex items-start"> | |
| <i data-feather="map-pin" class="text-yellow-400 mr-3 mt-1"></i> | |
| <div> | |
| <p class="text-gray-800 font-medium">123 Industrial Way</p> | |
| <p class="text-gray-700">Storage City, SC 12345</p> | |
| <p class="text-gray-600 mt-2">Conveniently located near Highway 101</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <i data-feather="clock" class="text-navy-500 mr-3 mt-1"></i> | |
| <div> | |
| <p class="text-gray-700">Access Hours:</p> | |
| <p class="text-gray-700">Monday - Sunday: 6:00 AM - 10:00 PM</p> | |
| </div> | |
| </div> | |
| <div class="flex items-start"> | |
| <i data-feather="phone" class="text-navy-500 mr-3 mt-1"></i> | |
| <div> | |
| <p class="text-gray-700">(555) 123-4567</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="md:w-1/2 h-96"> | |
| <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3022.215662606767!2d-73.9878446845938!3d40.75798587932694!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x89c25855c6480299%3A0x55194ec5a1ae072e!2sTimes%20Square!5e0!3m2!1sen!2sus!4v1623867894566!5m2!1sen!2sus" | |
| class="w-full h-full rounded-lg shadow-xl" | |
| style="border:0;" | |
| allowfullscreen="" | |
| loading="lazy" | |
| title="TAF Storage Location"></iframe> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Contact Section --> | |
| <section id="contact" class="py-16 bg-navy-500 text-white"> | |
| <div class="container mx-auto px-6"> | |
| <h2 class="text-3xl font-bold text-center mb-12">Get In Touch</h2> | |
| <div class="flex flex-col lg:flex-row gap-12"> | |
| <div class="lg:w-1/2"> | |
| <div class="bg-navy-600 p-8 rounded-lg shadow-lg"> | |
| <h3 class="text-xl font-semibold mb-6">Our Contact Info</h3> | |
| <div class="space-y-4"> | |
| <div class="flex items-start"> | |
| <i data-feather="map-pin" class="text-yellow-400 mr-4 mt-1"></i> | |
| <div> | |
| <p>123 Industrial Way</p> | |
| <p>Storage City, SC 12345</p> | |
| </div> | |
| </div> | |
| <div class="flex items-center"> | |
| <i data-feather="phone" class="text-yellow-400 mr-4"></i> | |
| <p>(555) 987-6543</p> | |
| </div> | |
| <div class="flex items-center"> | |
| <i data-feather="mail" class="text-yellow-400 mr-4"></i> | |
| <p>info@tafstorage.com</p> | |
| </div> | |
| <div class="flex items-center"> | |
| <i data-feather="clock" class="text-yellow-400 mr-4"></i> | |
| <p>Open 7 days a week, 6AM-10PM</p> | |
| </div> | |
| </div> | |
| </div> | |
| </div> | |
| <div class="lg:w-1/2"> | |
| <form class="bg-navy-600 p-8 rounded-lg shadow-lg"> | |
| <div> | |
| <label for="name" class="block mb-2">Full Name</label> | |
| <input type="text" id="name" class="w-full px-4 py-2 rounded text-navy-500"> | |
| </div> | |
| <div> | |
| <label for="email" class="block mb-2">Email Address</label> | |
| <input type="email" id="email" class="w-full px-4 py-2 rounded text-navy-500"> | |
| </div> | |
| <div class="md:col-span-2"> | |
| <label for="subject" class="block mb-2">Subject</label> | |
| <input type="text" id="subject" class="w-full px-4 py-2 rounded text-navy-500"> | |
| </div> | |
| <div class="md:col-span-2"> | |
| <label for="message" class="block mb-2">Message</label> | |
| <textarea id="message" rows="4" class="w-full px-4 py-2 rounded text-navy-500"></textarea> | |
| </div> | |
| <div class="md:col-span-2 text-center"> | |
| <button type="submit" class="bg-white text-navy-500 px-6 py-3 rounded-md font-semibold hover:bg-gray-100 transition">Send Message</button> | |
| </div> | |
| </form> | |
| </div> | |
| </div> | |
| </section> | |
| <!-- Footer --> | |
| <footer class="bg-navy-700 text-white py-8"> | |
| <div class="container mx-auto px-6"> | |
| <div class="flex flex-col md:flex-row justify-between items-center"> | |
| <div class="mb-6 md:mb-0"> | |
| <div class="flex items-center space-x-2"> | |
| <i data-feather="package" class="w-6 h-6"></i> | |
| <span class="text-lg font-bold">TAF Storage</span> | |
| </div> | |
| <p class="text-gray-300 mt-2">Secure storage solutions since 2010</p> | |
| </div> | |
| <div class="flex space-x-6"> | |
| <a href="#" class="text-gray-300 hover:text-yellow-400 transition"> | |
| <i data-feather="facebook" class="w-5 h-5"></i> | |
| </a> | |
| <a href="#" class="text-gray-300 hover:text-yellow-400 transition"> | |
| <i data-feather="twitter" class="w-5 h-5"></i> | |
| </a> | |
| <a href="#" class="text-gray-300 hover:text-yellow-400 transition"> | |
| <i data-feather="instagram" class="w-5 h-5"></i> | |
| </a> | |
| <a href="#" class="text-gray-300 hover:text-yellow-400 transition"> | |
| <i data-feather="youtube" class="w-5 h-5"></i> | |
| </a> | |
| </div> | |
| </div> | |
| <div class="border-t border-navy-500 mt-8 pt-8 flex flex-col md:flex-row justify-between"> | |
| <div class="text-gray-300 mb-4 md:mb-0"> | |
| <p>© 2023 TAF Storage. All rights reserved.</p> | |
| </div> | |
| <div class="flex flex-wrap gap-4"> | |
| <a href="#" class="text-gray-300 hover:text-white transition">Privacy Policy</a> | |
| <a href="#" class="text-gray-300 hover:text-white transition">Terms of Service</a> | |
| <a href="#" class="text-gray-300 hover:text-white transition">FAQ</a> | |
| </div> | |
| </div> | |
| </div> | |
| </footer> | |
| <script> | |
| feather.replace(); | |
| // Mobile menu toggle functionality would go here | |
| document.addEventListener('DOMContentLoaded', function() { | |
| const mobileMenuButton = document.querySelector('.md\\:hidden'); | |
| // Add click event for mobile menu toggle | |
| }); | |
| </script> | |
| </body> | |
| </html> | |