https://www.majuremowing.net import { loadScript } from 'wix-window'; $w.onReady(function () { const apiKey = 'YOUR_GOOGLE_API_KEY'; // Replace with your real Google API Key loadScript(`https://maps.googleapis.com/maps/api/js?key=${apiKey}&libraries=places`).then(() => { const input = document.getElementById("addressInput"); const autocomplete = new google.maps.places.Autocomplete(input); autocomplete.addListener("place_changed", () => { const place = autocomplete.getPlace(); const zipComponent = place.address_components.find(comp => comp.types.includes("postal_code") ); const zipCode = zipComponent ? zipComponent.long_name : null; let price; switch(zipCode) { case "75149": case "75150": price = "$55"; break; case "75126": price = "$60"; break; case "75228": price = "$65"; break; default: price = "Custom Quote Needed"; } $w('#priceText').text = `Estimated Price: ${price}`; }); }); });
top of page

Choose your pricing plan

  • Weekly Subscription

    60$
    Every week
    For lawns that love attention. Keep your yard looking crisp and clean with our weekly service— Mow, trim, edge, and tidy up every week like clockwork, so your neighbors stay jealous year-round.
     
    • Essential Lawn Care Visit
  • Biweekly Subscription

    65$
    Every 2 weeks
    Our biweekly plan offers just the right rhythm to keep your yard neat without overdoing it. Every other week, we’ll mow, edge, and clean up, ensuring your lawn stays fresh and healthy.
     
    • Essential Lawn Care Visit
  • Monthly Subscribtion

    70$
    Every month
    Low-maintenance service for low-maintenance yards. Designed for slower-growing lawns or those who just need a little help now and then.
     
    • Essential Lawn Care Visit
bottom of page