Appointment

```react import React, { useState } from 'react'; import { Wrench, AlertTriangle, Wind, Droplets, Zap, WashingMachine, PaintRoller, Home, ShieldCheck, Hammer, Calendar, Clock, Phone, Mail, User, CheckCircle2, ChevronRight, Menu, X, Facebook, Instagram, Camera, Award, Briefcase, Image as ImageIcon } from 'lucide-react'; // --- CUSTOM BRAND COLORS --- // Dark Purple: #231236 // Bright Yellow: #F4D03F // Accent Light Purple: #8B5CF6 (From the 10% OFF badge) export default function App() { const [isMobileMenuOpen, setIsMobileMenuOpen] = useState(false); const [bookingStatus, setBookingStatus] = useState('idle'); const contactInfo = { phone: "609-377-5022", email: "stewardsoftheshore@gmail.com", manager: "Craig Bell Sr", title: "Manager / Lead General Contractor", website: "www.stewardsoftheshore.com" }; const services = [ { title: "Routine Maintenance", icon: , desc: "Regular upkeep to keep your property in top condition." }, { title: "Emergency Repairs", icon: , desc: "24/7 rapid response for urgent property issues." }, { title: "HVAC Maintenance", icon: , desc: "Heating and cooling system servicing and repair." }, { title: "Plumbing Services", icon: , desc: "Leak fixes, pipe repairs, and full plumbing solutions." }, { title: "Electrical Repairs", icon: , desc: "Safe and certified electrical troubleshooting and fixes." }, { title: "Appliance Repairs", icon: , desc: "Fixing major household appliances quickly." }, { title: "Painting & Decorating", icon: , desc: "Interior and exterior painting to refresh your space." }, { title: "Roof & Gutter", icon: , desc: "Maintenance to protect your property from the elements." }, { title: "Security Systems", icon: , desc: "Installation and maintenance of property security." }, { title: "Structural Repairs", icon: , desc: "Ensuring the structural integrity of your building." }, ]; const handleBookingSubmit = (e) => { e.preventDefault(); setBookingStatus('submitting'); setTimeout(() => { setBookingStatus('success'); setTimeout(() => setBookingStatus('idle'), 4000); }, 1500); }; return (
{/* PROMO TOP BAR */}
Special Offer: Get 10% OFF your service! Call {contactInfo.phone} today.
{/* HEADER / NAVIGATION */}
{/* Logo */}
Stewards Of The Shore
{/* Desktop Nav */} {/* Mobile Menu Button */}
{/* Mobile Nav Dropdown */} {isMobileMenuOpen && ( )}
{/* HERO SECTION */}
{/* 10% Off Badge */}
🎉 10% OFF YOUR PROJECT

Expert Care For
Your Property

Led by General Contractor Craig Bell Sr. We are your all-in-one partner for pristine, well-maintained properties from routine cleaning to structural repairs.

{/* ABOUT / LEADERSHIP SECTION */}
{/* Placeholder for Craig's Photo */}

Meet Your Contractor

{contactInfo.manager}

{contactInfo.title}

With years of dedicated experience on the shore, Craig leads our team of skilled professionals. Whether you're looking for routine upkeep or dealing with an emergency structural repair, you can trust that Stewards of the Shore is managing your property with integrity, quality craftsmanship, and direct accountability.

{/* SERVICES SECTION */}

Our Expertise

Comprehensive Services

{services.map((service, index) => (
{service.icon}

{service.title}

{service.desc}

))}
{/* "OUR WORK" / PORTFOLIO SECTION */}

Portfolio

See Our Work!

Quality craftsmanship speaks for itself. Take a look at some of the recent properties we've transformed and maintained.

{/* Gallery Grid (Placeholders) */}
{[1, 2, 3, 4].map((item) => (
))}
{/* CALL TO ACTION / APPOINTMENT BOOKING */}
{/* Image/Info Side */}

Book Your Service

Ready to get started? Fill out the form to schedule an appointment with {contactInfo.manager} and the team.

Direct Line

{contactInfo.phone}

Email Us

{contactInfo.email}

Don't Forget!

Mention this website to get 10% OFF your service.

{/* Form Side */}
{bookingStatus === 'success' ? (

Request Sent!

Thank you for choosing Stewards of the Shore. Craig or a team member will be in touch shortly to finalize your appointment.

) : (
)}
{/* FOOTER */}
); } ```