your interior lighting is one of the most impactful

design choices for your home or business

<div id="google-reviews"></div>

<script>
  async function fetchGoogleReviews() {
    const placeId = ChIJvWQDCVMzuQkRedzCMTJd37E
    const apiKey = AIzaSyB48kwvayAY4yKjtJmgKqV8EM9stF00ozw

    const url = `https://maps.googleapis.com/maps/api/place/details/json?place_id=${placeId}&fields=reviews&key=${apiKey}`;

    try {
      const response = await fetch(url);
      const data = await response.json();

      if (data.result && data.result.reviews) {
        const reviews = data.result.reviews.map(review => `
          <div class="review">
            <p><strong>${review.author_name}</strong> - ⭐${review.rating}</p>
            <p>${review.text}</p>
          </div>
        `).join("");

        document.getElementById("google-reviews").innerHTML = reviews;
      } else {
        document.getElementById("google-reviews").innerHTML = "<p>No reviews found.</p>";
      }
    } catch (error) {
      console.error("Error fetching Google reviews:", error);
      document.getElementById("google-reviews").innerHTML = "<p>Error loading reviews.</p>";
    }
  }

  fetchGoogleReviews();
</script>

<style>
  .review {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
  }
</style>

Let us bring your ideas to life by illuminating the beauty of your space. We would love to help design and install your vision.