| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Evergreen Plumbing & HVAC | Professional Plumbing Services in Rhode Island</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: '#0e7490', |
| secondary: '#f59e0b' |
| } |
| } |
| } |
| } |
| </script> |
| </head> |
| <body class="bg-gray-50"> |
| |
| <header class="bg-white shadow-lg sticky top-0 z-50"> |
| <div class="container mx-auto px-4"> |
| <div class="flex justify-between items-center py-4"> |
| <div class="flex items-center space-x-2"> |
| <i data-feather="droplet" class="text-primary w-8 h-8"></i> |
| <span class="text-2xl font-bold text-primary">Evergreen Plumbing & HVAC</span> |
| </div> |
| |
| |
| <button id="mobile-menu-button" class="md:hidden"> |
| <i data-feather="menu" class="w-6 h-6"></i> |
| </button> |
|
|
| |
| <nav class="hidden md:flex space-x-8"> |
| <a href="#services" class="text-gray-700 hover:text-primary font-medium transition-colors">Services</a> |
| <a href="#about" class="text-gray-700 hover:text-primary font-medium transition-colors">About</a> |
| <a href="#testimonials" class="text-gray-700 hover:text-primary font-medium transition-colors">Reviews</a> |
| <a href="#contact" class="text-gray-700 hover:text-primary font-medium transition-colors">Contact</a> |
| </nav> |
|
|
| <div class="hidden md:flex items-center space-x-4"> |
| <a href="tel:401-555-1234" class="bg-primary text-white px-6 py-2 rounded-lg hover:bg-cyan-700 transition-colors font-medium"> |
| <i data-feather="phone" class="w-4 h-4 inline mr-2"></i> |
| Call Now |
| </a> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div id="mobile-menu" class="hidden md:hidden bg-white border-t"> |
| <div class="container mx-auto px-4 py-4 space-y-4"> |
| <a href="#services" class="block text-gray-700 hover:text-primary font-medium">Services</a> |
| <a href="#about" class="block text-gray-700 hover:text-primary font-medium">About</a> |
| <a href="#testimonials" class="block text-gray-700 hover:text-primary font-medium">Reviews</a> |
| <a href="#contact" class="block text-gray-700 hover:text-primary font-medium">Contact</a> |
| <a href="tel:401-555-1234" class="block bg-primary text-white px-6 py-2 rounded-lg text-center font-medium"> |
| <i data-feather="phone" class="w-4 h-4 inline mr-2"></i> |
| Call Now |
| </a> |
| </div> |
| </div> |
| </header> |
|
|
| |
| <section class="relative bg-gradient-to-r from-primary to-cyan-700 text-white py-20"> |
| <div class="absolute inset-0 bg-black opacity-20"></div> |
| <div class="container mx-auto px-4 relative z-10"> |
| <div class="max-w-3xl"> |
| <h1 class="text-5xl md:text-6xl font-bold mb-6 leading-tight"> |
| Professional Plumbing & HVAC Services in Rhode Island |
| </h1> |
| <p class="text-xl mb-8 text-cyan-100"> |
| 24/7 Emergency Services • Licensed & Insured • Family Owned & Operated |
| </p> |
| <div class="flex flex-col sm:flex-row gap-4"> |
| <a href="tel:401-555-1234" class="bg-secondary text-gray-900 px-8 py-4 rounded-lg hover:bg-amber-500 transition-colors font-bold text-lg text-center"> |
| <i data-feather="phone" class="w-5 h-5 inline mr-2"></i> |
| Emergency Call: (401) 555-1234 |
| </a> |
| <a href="#contact" class="border-2 border-white text-white px-8 py-4 rounded-lg hover:bg-white hover:text-primary transition-colors font-bold text-lg text-center"> |
| Schedule Service |
| </a> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="services" class="py-20 bg-white"> |
| <div class="container mx-auto px-4"> |
| <div class="text-center mb-16"> |
| <h2 class="text-4xl font-bold text-gray-900 mb-4">Our Services</h2> |
| <p class="text-xl text-gray-600 max-w-2xl mx-auto"> |
| Comprehensive plumbing and HVAC solutions for residential and commercial properties throughout Rhode Island |
| </p> |
| </div> |
|
|
| <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> |
| |
| <div class="bg-gray-50 rounded-xl p-8 hover:shadow-xl transition-shadow"> |
| <div class="w-16 h-16 bg-primary rounded-lg flex items-center justify-center mb-6"> |
| <i data-feather="droplet" class="text-white w-8 h-8"></i> |
| </div> |
| <h3 class="text-2xl font-bold text-gray-900 mb-4">Plumbing Services</h3> |
| <ul class="text-gray-600 space-y-2"> |
| <li class="flex items-center"> |
| <i data-feather="check" class="w-4 h-4 text-primary mr-2"></i> |
| Emergency Repairs |
| </li> |
| <li class="flex items-center"> |
| <i data-feather="check" class="w-4 h-4 text-primary mr-2"></i> |
| Water Heater Installation |
| </li> |
| <li class="flex items-center"> |
| <i data-feather="check" class="w-4 h-4 text-primary mr-2"></i> |
| Drain Cleaning |
| </li> |
| <li class="flex items-center"> |
| <i data-feather="check" class="w-4 h-4 text-primary mr-2"></i> |
| Pipe Repair & Replacement |
| </li> |
| </ul> |
| </div> |
|
|
| |
| <div class="bg-gray-50 rounded-xl p-8 hover:shadow-xl transition-shadow"> |
| <div class="w-16 h-16 bg-primary rounded-lg flex items-center justify-center mb-6"> |
| <i data-feather="thermometer" class="text-white w-8 h-8"></i> |
| </div> |
| <h3 class="text-2xl font-bold text-gray-900 mb-4">HVAC Services</h3> |
| <ul class="text-gray-600 space-y-2"> |
| <li class="flex items-center"> |
| <i data-feather="check" class="w-4 h-4 text-primary mr-2"></i> |
| AC Installation & Repair |
| </li> |
| <li class="flex items-center"> |
| <i data-feather="check" class="w-4 h-4 text-primary mr-2"></i> |
| Heating System Services |
| </li> |
| <li class="flex items-center"> |
| <i data-feather="check" class="w-4 h-4 text-primary mr-2"></i> |
| Maintenance Plans |
| </li> |
| <li class="flex items-center"> |
| <i data-feather="check" class="w-4 h-4 text-primary mr-2"></i> |
| Indoor Air Quality |
| </li> |
| </ul> |
| </div> |
|
|
| |
| <div class="bg-gray-50 rounded-xl p-8 hover:shadow-xl transition-shadow"> |
| <div class="w-16 h-16 bg-secondary rounded-lg flex items-center justify-center mb-6"> |
| <i data-feather="alert-triangle" class="text-white w-8 h-8"></i> |
| </div> |
| <h3 class="text-2xl font-bold text-gray-900 mb-4">24/7 Emergency</h3> |
| <ul class="text-gray-600 space-y-2"> |
| <li class="flex items-center"> |
| <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i> |
| Rapid Response Team |
| </li> |
| <li class="flex items-center"> |
| <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i> |
| Same Day Service |
| </li> |
| <li class="flex items-center"> |
| <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i> |
| Free Estimates |
| </li> |
| <li class="flex items-center"> |
| <i data-feather="check" class="w-4 h-4 text-secondary mr-2"></i> |
| Licensed & Insured |
| </li> |
| </ul> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="about" class="py-20 bg-gray-50"> |
| <div class="container mx-auto px-4"> |
| <div class="grid lg:grid-cols-2 gap-12 items-center"> |
| <div> |
| <h2 class="text-4xl font-bold text-gray-900 mb-6">Trusted Rhode Island Plumbing & HVAC Experts</h2> |
| <p class="text-lg text-gray-600 mb-6"> |
| With years of experience serving the Rhode Island community, Evergreen Plumbing & HVAC has built a reputation for excellence, reliability, and outstanding customer service. |
| </p> |
| <div class="space-y-4"> |
| <div class="flex items-center"> |
| <i data-feather="award" class="w-6 h-6 text-primary mr-3"></i> |
| <span class="text-gray-700">Licensed & Insured Professionals</span> |
| </div> |
| <div class="flex items-center"> |
| <i data-feather="clock" class="w-6 h-6 text-primary mr-3"></i> |
| <span class="text-gray-700">24/7 Emergency Services Available</span> |
| </div> |
| <div class="flex items-center"> |
| <i data-feather="thumbs-up" class="w-6 h-6 text-primary mr-3"></i> |
| <span class="text-gray-700">100% Customer Satisfaction Guarantee</span> |
| </div> |
| </div> |
| </div> |
| <div class="grid grid-cols-2 gap-4"> |
| <img src="http://static.photos/construction/640x360/1" alt="Plumbing Work" class="rounded-lg shadow-lg"> |
| <img src="http://static.photos/technology/640x360/2" alt="HVAC Installation" class="rounded-lg shadow-lg mt-8"> |
| <img src="http://static.photos/office/640x360/3" alt="Professional Team" class="rounded-lg shadow-lg"> |
| <img src="http://static.photos/industry/640x360/4" alt="Quality Service" class="rounded-lg shadow-lg mt-8"> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="testimonials" class="py-20 bg-primary text-white"> |
| <div class="container mx-auto px-4"> |
| <div class="text-center mb-16"> |
| <h2 class="text-4xl font-bold mb-4">What Our Customers Say</h2> |
| <p class="text-xl text-cyan-100 max-w-2xl mx-auto"> |
| Don't just take our word for it - hear from our satisfied customers across Rhode Island |
| </p> |
| </div> |
|
|
| <div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8"> |
| |
| <div class="bg-cyan-700 rounded-xl p-8"> |
| <div class="flex items-center mb-4"> |
| <i data-feather="star" class="w-5 h-5 text-secondary mr-1"></i> |
| <i data-feather="star" class="w-5 h-5 text-secondary mr-1"></i> |
| <i data-feather="star" class="w-5 h-5 text-secondary mr-1"></i> |
| <i data-feather="star" class="w-5 h-5 text-secondary mr-1"></i> |
| <i data-feather="star" class="w-5 h-5 text-secondary mr-1"></i> |
| </div> |
| <p class="text-cyan-100 mb-6"> |
| "Emergency plumbing service on a Sunday! Fixed our burst pipe quickly and professionally. Highly recommend Evergreen Plumbing!" |
| </p> |
| <div class="flex items-center"> |
| <div class="w-12 h-12 bg-cyan-600 rounded-full flex items-center justify-center mr-4"> |
| <i data-feather="user" class="text-white w-6 h-6"></i> |
| </div> |
| <div> |
| <p class="font-semibold">Sarah M.</p> |
| <p class="text-cyan-200 text-sm">Providence, RI</p> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-cyan-700 rounded-xl p-8"> |
| <div class="flex items-center mb-4"> |
| <i data-feather="star" class="w-5 h-5 text-secondary mr-1"></i> |
| <i data-feather="star" class="w-5 h-5 text-secondary mr-1"></i> |
| <i data-feather="star" class="w-5 h-5 text-secondary mr-1"></i> |
| <i data-feather="star" class="w-5 h-5 text-secondary mr-1"></i> |
| <i data-feather="star" class="w-5 h-5 text-secondary mr-1"></i> |
| </div> |
| <p class="text-cyan-100 mb-6"> |
| "Great HVAC installation service. The team was professional, clean, and efficient. Fair pricing and excellent workmanship." |
| </p> |
| <div class="flex items-center"> |
| <div class="w-12 h-12 bg-cyan-600 rounded-full flex items-center justify-center mr-4"> |
| <i data-feather="user" class="text-white w-6 h-6"></i> |
| </div> |
| <div> |
| <p class="font-semibold">John D.</p> |
| <p class="text-cyan-200 text-sm">Warwick, RI</p> |
| </div> |
| </div> |
| </div> |
|
|
| |
| <div class="bg-cyan-700 rounded-xl p-8"> |
| <div class="flex items-center mb-4"> |
| <i data-feather="star" class="w-5 h-5 text-secondary mr-1"></i> |
| <i data-feather="star" class="w-5 h-5 text-secondary mr-1"></i> |
| <i data-feather="star" class="w-5 h-5 text-secondary mr-1"></i> |
| <i data-feather="star" class="w-5 h-5 text-secondary mr-1"></i> |
| <i data-feather="star" class="w-5 h-5 text-secondary mr-1"></i> |
| </div> |
| <p class="text-cyan-100 mb-6"> |
| "Reliable and honest plumbing service. They diagnosed the issue accurately and provided a fair quote. Will use them for all future plumbing needs." |
| </p> |
| <div class="flex items-center"> |
| <div class="w-12 h-12 bg-cyan-600 rounded-full flex items-center justify-center mr-4"> |
| <i data-feather="user" class="text-white w-6 h-6"></i> |
| </div> |
| <div> |
| <p class="font-semibold">Michael T.</p> |
| <p class="text-cyan-200 text-sm">Cranston, RI</p> |
| </div> |
| </div> |
| </div> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <section id="contact" class="py-20 bg-white"> |
| <div class="container mx-auto px-4"> |
| <div class="grid lg:grid-cols-2 gap-12"> |
| <div> |
| <h2 class="text-4xl font-bold text-gray-900 mb-6">Get in Touch</h2> |
| <p class="text-lg text-gray-600 mb-8"> |
| Ready to solve your plumbing or HVAC issues? Contact us today for a free estimate or emergency service. |
| </p> |
| |
| <div class="space-y-6"> |
| <div class="flex items-center"> |
| <i data-feather="phone" class="w-6 h-6 text-primary mr-4"></i> |
| <div> |
| <p class="font-semibold text-gray-900">Emergency Hotline</p> |
| <a href="tel:401-555-1234" class="text-gray-600 hover:text-primary">(401) 555-1234</a> |
| </div> |
| </div> |
| |
| <div class="flex items-center"> |
| <i data-feather="mail" class="w-6 h-6 text-primary mr-4"></i> |
| <div> |
| <p class="font-semibold text-gray-900">Email</p> |
| <a href="mailto:info@evergreenplumbingri.com" class="text-gray-600 hover:text-primary">info@evergreenplumbingri.com</a> |
| </div> |
| </div> |
| |
| <div class="flex items-center"> |
| <i data-feather="map-pin" class="w-6 h-6 text-primary mr-4"></i> |
| <div> |
| <p class="font-semibold text-gray-900">Service Area</p> |
| <p class="text-gray-600">Serving all of Rhode Island</p> |
| </div> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="bg-gray-50 rounded-xl p-8"> |
| <h3 class="text-2xl font-bold text-gray-900 mb-6">Schedule Service</h3> |
| <form class="space-y-4"> |
| <div class="grid md:grid-cols-2 gap-4"> |
| <input type="text" placeholder="First Name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary"> |
| <input type="text" placeholder="Last Name" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary"> |
| </div> |
| <input type="email" placeholder="Email Address" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary"> |
| <input type="tel" placeholder="Phone Number" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary"> |
| <select class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary"> |
| <option value="">Select Service Type</option> |
| <option value="plumbing">Plumbing</option> |
| <option value="hvac">HVAC</option> |
| <option value="emergency">Emergency Service</option> |
| </select> |
| <textarea placeholder="Describe your issue..." rows="4" class="w-full px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-primary"></textarea> |
| <button type="submit" class="w-full bg-primary text-white py-3 rounded-lg hover:bg-cyan-700 transition-colors font-semibold"> |
| Request Service |
| </button> |
| </form> |
| </div> |
| </div> |
| </section> |
|
|
| |
| <footer class="bg-gray-900 text-white py-12"> |
| <div class="container mx-auto px-4"> |
| <div class="grid md:grid-cols-4 gap-8"> |
| <div> |
| <div class="flex items-center space-x-2 mb-4"> |
| <i data-feather="droplet" class="text-primary w-6 h-6"></i> |
| <span class="text-xl font-bold">Evergreen Plumbing & HVAC</span> |
| </div> |
| <p class="text-gray-400"> |
| Your trusted plumbing and HVAC experts serving Rhode Island with excellence and reliability. |
| </p> |
| </div> |
|
|
| <div> |
| <h4 class="font-semibold text-lg mb-4">Quick Links</h4> |
| <ul class="space-y-2 text-gray-400"> |
| <li><a href="#services" class="hover:text-white transition-colors">Services</a></li> |
| <li><a href="#about" class="hover:text-white transition-colors">About Us</a></li> |
| <li><a href="#testimonials" class="hover:text-white transition-colors">Reviews</a></li> |
| <li><a href="#contact" class="hover:text-white transition-colors">Contact</a></li> |
| </ul> |
| </div> |
|
|
| <div> |
| <h4 class="font-semibold text-lg mb-4">Services</h4> |
| <ul class="space-y-2 text-gray-400"> |
| <li><a href="#" class="hover:text-white transition-colors">Emergency Plumbing</a></li> |
| <li><a href="#" class="hover:text-white transition-colors">HVAC Installation</a></li> |
| <li><a href="#" class="hover:text-white transition-colors">Water Heater Services</a></li> |
| <li><a href="#" class="hover:text-white transition-colors">Drain Cleaning</a></li> |
| </ul> |
| </div> |
|
|
| <div> |
| <h4 class="font-semibold text-lg mb-4">Connect</h4> |
| <div class="flex space-x-4"> |
| <a href="#" class="text-gray-400 hover:text-white transition-colors"> |
| <i data-feather="facebook" class="w-5 h-5"></i> |
| </a> |
| <a href="#" class="text-gray-400 hover:text-white transition-colors"> |
| <i data-feather="twitter" class="w-5 h-5"></i> |
| </a> |
| <a href="#" class="text-gray-400 hover:text-white transition-colors"> |
| <i data-feather="instagram" class="w-5 h-5"></i> |
| </a> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="border-t border-gray-800 mt-8 pt-8 text-center text-gray-400"> |
| <p>© 2024 Evergreen Plumbing & HVAC. All rights reserved.</p> |
| </div> |
| </div> |
| </footer> |
|
|
| <script> |
| |
| document.getElementById('mobile-menu-button').addEventListener('click', function() { |
| const menu = document.getElementById('mobile-menu'); |
| menu.classList.toggle('hidden'); |
| }); |
| |
| |
| document.addEventListener('click', function(event) { |
| const menu = document.getElementById('mobile-menu'); |
| const button = document.getElementById('mobile-menu-button'); |
| |
| if (!menu.contains(event.target) && !button.contains(event.target)) { |
| menu.classList.add('hidden'); |
| } |
| }); |
| |
| |
| document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
| anchor.addEventListener('click', function (e) { |
| e.preventDefault(); |
| const target = document.querySelector(this.getAttribute('href')); |
| if (target) { |
| target.scrollIntoView({ |
| behavior: 'smooth', |
| block: 'start' |
| }); |
| } |
| }); |
| }); |
| |
| |
| feather.replace(); |
| </script> |
| </body> |
| </html> |
|
|