Live Google Reviews
Enable live reviews: Add your Google Maps JavaScript API key and placeId in this snippet and paste it into index.html.
<div id="reviews"></div>
<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_API_KEY&libraries=places"></script>
<script>
const service = new google.maps.places.PlacesService(document.createElement('div'));
service.getDetails({ placeId:'YOUR_PLACE_ID', fields:['reviews'] }, (place, status) => {
if(status !== google.maps.places.PlacesServiceStatus.OK) return;
const wrap = document.getElementById('reviews');
wrap.innerHTML = place.reviews.slice(0,6).map(r => `<blockquote>${r.text}<footer>— ${r.author_name}</footer></blockquote>`).join('');
});
</script>