od5965's picture
Redesign my website
35284d5 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Stone Plumbing Co. | Jamestown, Chautauqua NY & Warren PA</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#1e40af',
secondary: '#ea580c',
}
}
}
}
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
body {
font-family: 'Montserrat', sans-serif;
scroll-behavior: smooth;
}
.hero-bg {
background: linear-gradient(120deg, rgba(30, 64, 175, 0.9) 0%, rgba(234, 88, 12, 0.85) 100%);
}
.btn-primary {
transition: all 0.3s ease;
}
.btn-primary:hover {
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.service-card {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.floating {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0% { transform: translateY(0px); }
50% { transform: translateY(-15px); }
100% { transform: translateY(0px); }
}
</style>
</head>
<body class="bg-gray-50">
<!-- Navigation -->
<nav class="bg-white shadow-md fixed w-full z-50">
<div class="container mx-auto px-4">
<div class="flex justify-between items-center py-4">
<a href="#" class="text-2xl font-bold text-primary">Stone Plumbing Co.</a>
<div class="hidden md:flex space-x-8">
<a href="#services" class="text-gray-700 hover:text-primary transition">Services</a>
<a href="#about" class="text-gray-700 hover:text-primary transition">About</a>
<a href="#contact" class="text-gray-700 hover:text-primary transition">Contact</a>
</div>
<a href="tel:+1716-720-4364" class="bg-primary text-white px-6 py-2 rounded-full font-semibold hover:bg-blue-800 transition flex items-center">
<i data-feather="phone" class="mr-2 w-4 h-4"></i> (716) 720-4364
</a>
<button class="md:hidden">
<i data-feather="menu"></i>
</button>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero-bg pt-32 pb-20 text-white">
<div class="container mx-auto px-4">
<div class="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 mb-4">Ditch the rest; call the best!</h1>
<p class="text-xl mb-6">RESIDENTIAL & COMMERCIAL PLUMBING SERVICES FOR THE JAMESTOWN, CHAUTAUQUA NY & WARREN PA AREAS</p>
<div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
<a href="tel:+1716-720-4364" class="bg-secondary hover:bg-orange-700 text-white px-8 py-4 rounded-full font-semibold text-center btn-primary">
CALL US NOW
</a>
<a href="#services" class="border-2 border-white hover:bg-white hover:text-primary px-8 py-4 rounded-full font-semibold text-center transition">
OUR SERVICES
</a>
</div>
</div>
<div class="md:w-1/2 flex justify-center">
<img src="https://lirp.cdn-website.com/3407a481/dms3rep/multi/opt/Man-602h.png" alt="Plumber Illustration" class="floating max-w-md w-full">
</div>
</div>
</div>
</section>
<!-- About Section -->
<section id="about" class="py-20 bg-white">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row items-center">
<div class="md:w-1/2 mb-10 md:mb-0">
<img src="https://lirp.cdn-website.com/3407a481/dms3rep/multi/opt/stone+plumbing+6-702w.jpg" alt="Plumber fixing sink" class="rounded-xl shadow-xl">
</div>
<div class="md:w-1/2 md:pl-12">
<h2 class="text-3xl font-bold text-gray-800 mb-6">Professional Plumbing Services</h2>
<p class="text-gray-600 mb-6">Stone Plumbing Co. is a small, professional company with a keen attention to detail. We can assist both residential and commercial customers in Jamestown, NY; Warren, PA; and Chautauqua, NY with plumbing services. We want your business and will do whatever it takes to make you happy.</p>
<p class="text-gray-600 mb-8">We can help homeowners repair clogged sinks and replace inefficient hot water tanks, and we can help commercial customers with grease traps and backflow regulators.</p>
<a href="https://www.stoneplumbingco.com/about-us" class="bg-primary text-white px-8 py-3 rounded-full font-semibold inline-flex items-center btn-primary">
READ MORE
<i data-feather="arrow-right" class="ml-2 w-5 h-5"></i>
</a>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services" class="py-20 bg-gray-100">
<div class="container mx-auto px-4">
<div class="text-center mb-16">
<h2 class="text-3xl font-bold text-gray-800 mb-4">Our Plumbing Services</h2>
<p class="text-gray-600 max-w-2xl mx-auto">Comprehensive plumbing solutions for residential and commercial properties throughout Jamestown, Chautauqua NY and Warren PA areas.</p>
</div>
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="bg-white p-8 rounded-xl shadow-md service-card">
<div class="bg-primary/10 p-4 rounded-full w-16 h-16 flex items-center justify-center mb-6">
<i data-feather="home" class="text-primary w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold mb-4">Residential Plumbing</h3>
<p class="text-gray-600 mb-6">From clogged sinks to water heater replacements, we handle all your home plumbing needs with precision and care.</p>
<a href="https://www.stoneplumbingco.com/residential-plumbing" class="text-primary font-semibold flex items-center">
Learn more <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
<div class="bg-white p-8 rounded-xl shadow-md service-card">
<div class="bg-secondary/10 p-4 rounded-full w-16 h-16 flex items-center justify-center mb-6">
<i data-feather="building" class="text-secondary w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold mb-4">Commercial Plumbing</h3>
<p class="text-gray-600 mb-6">Expert solutions for businesses including grease traps, backflow regulators, and commercial plumbing systems.</p>
<a href="https://www.stoneplumbingco.com/commercial-plumbing" class="text-primary font-semibold flex items-center">
Learn more <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
<div class="bg-white p-8 rounded-xl shadow-md service-card">
<div class="bg-primary/10 p-4 rounded-full w-16 h-16 flex items-center justify-center mb-6">
<i data-feather="alert-circle" class="text-primary w-8 h-8"></i>
</div>
<h3 class="text-xl font-semibold mb-4">Emergency Services</h3>
<p class="text-gray-600 mb-6">Plumbing emergencies don't wait for business hours. We're standing by to assist when you need us most.</p>
<a href="tel:+1716-720-4364" class="text-primary font-semibold flex items-center">
Call now <i data-feather="phone" class="ml-2 w-4 h-4"></i>
</a>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="py-20 bg-primary text-white">
<div class="container mx-auto px-4 text-center">
<h2 class="text-3xl font-bold mb-6">Pick Up The Phone And Call Stone!</h2>
<p class="text-xl mb-10 max-w-3xl mx-auto">We know that plumbing issues don't always strike between the hours of 9 and 5. That's why Stone Plumbing Co. is standing by to assist in emergency situations.</p>
<div class="flex flex-col md:flex-row justify-center items-center space-y-6 md:space-y-0 md:space-x-6">
<a href="tel:+1716-720-4364" class="bg-secondary hover:bg-orange-700 text-white px-8 py-4 rounded-full font-semibold text-center btn-primary flex items-center">
<i data-feather="phone" class="mr-2"></i> CALL NOW: (716) 720-4364
</a>
<a href="https://www.stoneplumbingco.com/contact-us" class="border-2 border-white hover:bg-white hover:text-primary px-8 py-4 rounded-full font-semibold text-center transition">
CONTACT US
</a>
</div>
<div class="mt-12 bg-white/10 p-6 rounded-xl max-w-4xl mx-auto">
<p class="mb-4">We offer competitive pricing, same-day service, and free quotes. We also guarantee our workmanship!</p>
<p>Call Stone Plumbing Co. to schedule an appointment today!</p>
</div>
</div>
</section>
<!-- Award Section -->
<section class="py-16 bg-gray-50">
<div class="container mx-auto px-4">
<div class="flex flex-col md:flex-row items-center justify-between">
<div class="md:w-1/2 mb-8 md:mb-0 text-center md:text-left">
<h2 class="text-2xl font-bold text-gray-800 mb-4">Thank you Chautauqua County for your support!</h2>
<p class="text-gray-600 text-xl">We love serving your plumbing/HVAC/AC needs.</p>
</div>
<div class="md:w-1/2 flex justify-center">
<img src="https://lirp.cdn-website.com/3407a481/dms3rep/multi/opt/Stone+Plumbing+Award-493w.jpeg" alt="Best of the best award" class="rounded-xl shadow-md max-w-xs">
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-gray-800 text-white py-12">
<div class="container mx-auto px-4">
<div class="grid md:grid-cols-3 gap-8">
<div>
<h3 class="text-xl font-bold mb-4">Stone Plumbing Co.</h3>
<p class="mb-4">Professional plumbing services for Jamestown, Chautauqua NY & Warren PA areas.</p>
<div class="flex space-x-4">
<a href="#" class="text-gray-400 hover:text-white transition">
<i data-feather="facebook"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i data-feather="instagram"></i>
</a>
<a href="#" class="text-gray-400 hover:text-white transition">
<i data-feather="twitter"></i>
</a>
</div>
</div>
<div>
<h3 class="text-xl font-bold mb-4">Quick Links</h3>
<ul class="space-y-2">
<li><a href="#services" class="text-gray-400 hover:text-white transition">Services</a></li>
<li><a href="#about" class="text-gray-400 hover:text-white transition">About Us</a></li>
<li><a href="#contact" class="text-gray-400 hover:text-white transition">Contact</a></li>
</ul>
</div>
<div>
<h3 class="text-xl font-bold mb-4">Contact Info</h3>
<div class="space-y-2">
<div class="flex items-center">
<i data-feather="phone" class="mr-2 w-5 h-5"></i>
<a href="tel:+1716-720-4364" class="text-gray-400 hover:text-white transition">(716) 720-4364</a>
</div>
<div class="flex items-center">
<i data-feather="clock" class="mr-2 w-5 h-5"></i>
<span class="text-gray-400">24/7 Emergency Service</span>
</div>
<div class="flex items-center">
<i data-feather="map-pin" class="mr-2 w-5 h-5"></i>
<span class="text-gray-400">Serving Jamestown, Chautauqua NY & Warren PA</span>
</div>
</div>
</div>
</div>
<div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400">
<p>&copy; 2023 Stone Plumbing Co. All rights reserved.</p>
</div>
</div>
</footer>
<script>
feather.replace();
// Mobile menu toggle
document.querySelector('nav button').addEventListener('click', function() {
const menu = document.querySelector('.hidden.md\\:flex');
menu.classList.toggle('hidden');
menu.classList.toggle('flex');
menu.classList.toggle('flex-col');
menu.classList.toggle('absolute');
menu.classList.toggle('top-full');
menu.classList.toggle('left-0');
menu.classList.toggle('w-full');
menu.classList.toggle('bg-white');
menu.classList.toggle('shadow-md');
menu.classList.toggle('p-4');
menu.classList.toggle('space-y-4');
});
</script>
</body>
</html>