import React, { useState, useEffect } from 'react'; import { MapPin, Phone, Mail, Clock, ArrowRight, Menu, X, Hammer, Home, Droplet, Shield } from 'lucide-react'; // Main App Component export default function CrestlineRoofingWebsite() { const [isMenuOpen, setIsMenuOpen] = useState(false); const [isSticky, setIsSticky] = useState(false); useEffect(() => { const handleScroll = () => { if (window.scrollY > 100) { setIsSticky(true); } else { setIsSticky(false); } }; window.addEventListener('scroll', handleScroll); return () => { window.removeEventListener('scroll', handleScroll); }; }, []); const toggleMenu = () => { setIsMenuOpen(!isMenuOpen); }; return (
{/* Top Header */}
(214) 333-9393
admin@crestlineroofing.store
1898 Louisiana Ave, League City, TX
Mon-Fri: 7AM-7PM | Sat: 8AM-5PM
{/* Main Header */}
Crestline Roofing
Free Quote
{/* Mobile Menu */} {isMenuOpen && (
(214) 333-9393
admin@crestlineroofing.store
1898 Louisiana Ave, League City, TX
Mon-Fri: 7AM-7PM | Sat: 8AM-5PM
)}
{/* Hero Section */}

Crestline Roofing

Professional installation, repair and maintenance services for residential and commercial roofing in League City

Schedule Service
{/* Services Section */}

Our Services

We offer comprehensive roofing solutions for residential and commercial properties in League City and surrounding areas.

{/* Service Card 1 */}

Roof Repair

Quick, reliable repairs for all types of roofing. We fix damage from storms, aging, and wear-and-tear.

{/* Service Card 2 */}

New Installation

Expert installation of high-quality roofing systems. We work with a variety of materials for lasting results.

{/* Service Card 3 */}

Leak Detection

Safe and efficient leak detection and prevention. We identify and fix issues before they cause damage.

{/* Service Card 4 */}

Maintenance

Preventative maintenance plans to extend the life of your roof and prevent costly repairs.

{/* About Section */}

About Crestline Roofing

Serving League City and surrounding areas with excellence since 2010.

Our Story

Crestline Roofing was founded with a simple mission: to provide honest, quality roofing services at fair prices. Over the years, we've built a reputation for reliability, craftsmanship, and excellent customer service.

Why Choose Us

Licensed & Insured

Fully certified professionals

Quality Materials

We never compromise on quality

5-Year Warranty

On all our installations

Emergency Services

Available 24/7 for urgent needs

Our Team

Our professional team consists of experienced roofers, project managers, and customer service specialists. Each member is committed to delivering the highest quality work and ensuring your complete satisfaction.

{/* Gallery Section */} {/* Testimonials Section */} {/* Business Hours Section */}

Business Hours & Service Area

Serving League City and surrounding communities

Business Hours

  • Monday 7:00 AM - 7:00 PM
  • Tuesday 7:00 AM - 7:00 PM
  • Wednesday 7:00 AM - 7:00 PM
  • Thursday 7:00 AM - 7:00 PM
  • Friday 7:00 AM - 7:00 PM
  • Saturday 8:00 AM - 5:00 PM
  • Sunday Closed

24/7 Emergency Service Available

(214) 333-9393

Service Areas

We proudly serve the following communities in and around League City:

League City
Friendswood
Kemah
Clear Lake
Seabrook
Webster
Dickinson
Texas City

Not sure if we service your area? Contact us to find out!

{/* Contact Section */}

Contact Us

Reach out to schedule a free consultation or get a quote for your roofing project.

Get In Touch

Address

1898 Louisiana Ave, League City, TX 77573

Business Hours

Mon-Fri: 7AM-7PM

Sat: 8AM-5PM | Sun: Closed

{/* Google Maps placeholder */}

Google Maps would be embedded here

Send us a Message

{/* Footer */}
); } // Testimonials Section Component function TestimonialsSection() { const [activeIndex, setActiveIndex] = useState(0); const testimonials = [ { text: "Crestline Roofing did an outstanding job replacing our roof after a storm. The team was professional, efficient, and completed the work ahead of schedule. Highly recommend their services!", name: "Michael Johnson", location: "League City" }, { text: "We had a leak that two other companies couldn't fix. The team at Crestline identified the problem quickly and provided a permanent solution. Their attention to detail is impressive.", name: "Sarah Williams", location: "Friendswood" }, { text: "From the initial consultation to the final inspection, Crestline Roofing provided exceptional service. Fair pricing, quality materials, and expert installation. Our new roof looks fantastic!", name: "David Rodriguez", location: "Clear Lake" } ]; useEffect(() => { const interval = setInterval(() => { setActiveIndex((prevIndex) => (prevIndex + 1) % testimonials.length); }, 5000); return () => clearInterval(interval); }, [testimonials.length]); return (

What Our Customers Say

Don't just take our word for it. Hear from our satisfied customers.

{testimonials.map((testimonial, index) => (

"{testimonial.text}"

{testimonial.name}

{testimonial.location}

))}
{testimonials.map((_, index) => (
); }