| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Home Construction & Mechanical Company</title> |
| <link rel="stylesheet" href="style.css"> |
| <script src="https://cdn.tailwindcss.com"></script> |
| <script src="https://unpkg.com/feather-icons"></script> |
| </head> |
| <body> |
| <custom-navbar></custom-navbar> |
| |
| <main class="container mx-auto px-4 py-8"> |
| <h1 class="text-4xl font-bold mb-8">Our Services</h1> |
| |
| <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6"> |
| <div class="bg-white rounded-lg shadow-md overflow-hidden"> |
| <img src="http://static.photos/construction/640x360/1" alt="Construction" class="w-full h-48 object-cover"> |
| <div class="p-6"> |
| <h2 class="text-2xl font-semibold mb-2">Modern Construction</h2> |
| <p class="text-gray-600 mb-4">Turnkey solutions for residential and commercial spaces, from concept to completion.</p> |
| <a href="services/construction.html" class="text-orange-500 hover:text-orange-700 font-medium">Learn more β</a> |
| </div> |
| </div> |
| |
| <div class="bg-white rounded-lg shadow-md overflow-hidden"> |
| <img src="http://static.photos/technology/640x360/2" alt="MEP" class="w-full h-48 object-cover"> |
| <div class="p-6"> |
| <h2 class="text-2xl font-semibold mb-2">MEP Integration</h2> |
| <p class="text-gray-600 mb-4">Complete Mechanical, Electrical, and Plumbing solutions for seamless building operations.</p> |
| <a href="services/mep.html" class="text-orange-500 hover:text-orange-700 font-medium">Learn more β</a> |
| </div> |
| </div> |
| |
| <div class="bg-white rounded-lg shadow-md overflow-hidden"> |
| <img src="http://static.photos/industry/640x360/3" alt="Cold Rooms" class="w-full h-48 object-cover"> |
| <div class="p-6"> |
| <h2 class="text-2xl font-semibold mb-2">Cold Room Solutions</h2> |
| <p class="text-gray-600 mb-4">Specialized cold room design and installation for commercial and industrial applications.</p> |
| <a href="services/cold-rooms.html" class="text-orange-500 hover:text-orange-700 font-medium">Learn more β</a> |
| </div> |
| </div> |
| </div> |
| </main> |
| |
| <custom-footer></custom-footer> |
| |
| <script src="components/navbar.js"></script> |
| <script src="components/footer.js"></script> |
| <script> |
| feather.replace(); |
| </script> |
| <script src="https://deepsite.hf.co/deepsite-badge.js"></script> |
| </body> |
| </html> |