Testimonials
Celebrating 100 Google Reviews!
To all our amazing customers, followers, and supporters, thank you from the bottom of our hearts for helping us reach a major milestone: 100 Google reviews!
Your kind words have not only made our day but have also helped us grow and improve our services. We’re truly grateful for your continued business and trust in us.
Each review, like, share, and comment means the world to us. Your feedback inspires us to keep pushing forward, innovating, and delivering outstanding service.
Let’s raise a virtual toast to all of you, our incredible community! Your loyalty and support have been the foundation of our success. Here’s to many more wonderful moments together as we continue this incredible journey.
Thank you for being a part of our story and for making our dreams come true. Your continued support means everything to us.
#Thankful #Grateful #Celebrating100Reviews #CustomerAppreciation #CommunityLove
https://g.page/r/CQxSpnOEFeb5EB0/review
apiKey = 'AIzaSyA0yaoUb2h9zPptt3UomuC08hBCoqj_Ln4';
placeId = 'ChIJ66bAnUtEs0wR64CmJa8CyNc';
// Function to render the reviews on the webpage function renderReviews(reviews) { const reviewsWidget = document.getElementById('reviews-widget');
if (reviews.length === 0) { reviewsWidget.innerHTML = 'No reviews found.'; return; }
const reviewList = document.createElement('ul'); reviewList.classList.add('review-list');
for (let i = 0; i < reviews.length; i++) {
const review = reviews[i];
const listItem = document.createElement('li');
listItem.classList.add('review-item');
const rating = document.createElement('span');
rating.classList.add('rating');
rating.innerHTML = 'Rating: ' + review.rating;
const author = document.createElement('span');
author.classList.add('author');
author.innerHTML = 'Author: ' + review.author_name;
const text = document.createElement('p');
text.classList.add('text');
text.innerHTML = review.text;
listItem.appendChild(rating);
listItem.appendChild(author);
listItem.appendChild(text);
reviewList.appendChild(listItem);
}
reviewsWidget.appendChild(reviewList);
}
// Fetch and display the reviews
function fetchReviews() {
const script = document.createElement('script');
script.src = `https://maps.googleapis.com/maps/api/place/details/json?placeid=${placeId}&key=${apiKey}&fields=reviews&callback=renderReviews`;
script.defer = true;
script.async = true;
document.head.appendChild(script);
}
// Load the reviews when the document is ready
document.addEventListener('DOMContentLoaded', fetchReviews);
Review 1
This is the first review.
Review 2
This is the second review.
Review 3
This is the third review.