/* ============================================================================ MS_ReviewsGallery — real Google reviews + traveller photo gallery. Sits below the contact section. Images hosted locally (assets/reviews/). ========================================================================== */ (function () { const { useState, useRef } = React; // Real Google reviews (MarrakechStory Tours · 5.0 · 28 reviews) const REVIEWS = [ { name: 'Rugile Ad', text: "I recently traveled to Marrakesh with Marrakesh Story, and I couldn't be more pleased with the entire experience! My boyfriend and I were absolutely delighted with how the trip was tailored specifically for us." }, { name: 'Younes el khomri', text: "My wife and I had the absolute best holiday of our lives thanks to Marrakesh Story! From start to finish, everything was perfectly planned, allowing us to fully enjoy every moment without a single worry." }, { name: 'Dee Pinkney', text: "Very easy to communicate with! We decided which activities we wanted to do and the dates we would be in Morocco, sent them a message and they took it from there. Very easy!" }, { name: 'Alexander Ganapathy', text: "We had an amazing day trip to the Agafay Desert with MarrakechStory. They let us visit several camps before we chose the one we liked best. The service was top-notch from start to finish. Highly recommended!" }, { name: 'Adrienne Galloway', text: "My family and I used Yaya as a taxi driver a few times throughout our stay. He was welcoming, punctual and had a clean vehicle. He communicated clearly. Would recommend Yaya to anyone visiting Morocco." }, { name: 'BABS Jonquille', text: "What a fantastic 5-day trip we had in Marrakech. We couldn't have done any of this without the tremendous effort of Aladdin and his team at Marrakech Story Tours. What a blast!" }, { name: 'Arnfinn Jr. Lauvas', text: "We traveled two adults and two children to Marrakech in April 2024. Aladdin and Marte at Marrakech Story organized EVERYTHING for us, assisting with booking and transportation." }, { name: 'Alexia Terrones', text: "A wonderful experience for our first trip to Morocco. Aladin was always attentive and available throughout the day. He handled everything very professionally. I will definitely use this agency again." }, { name: 'Juteau andrea', text: "Fantastic premium experience! My parents and I went on a quad bike excursion in the Agafay Desert at sunset, it was absolutely amazing. The team is professional and the service is 5-star!" }, { name: 'Leo JIMENEZ', text: "We were lucky enough to have Yaya as our driver in Marrakech, and we highly recommend him. Very punctual, discreet, and always accommodating. He knows the city perfectly." }, { name: 'Unn West', text: "We booked dinner with a show and camel ride with Marrakech Story Tours. A truly magical experience with fantastic food, friendly camel drivers and a beautiful sunset from the back of a camel. Highly recommended." }, { name: 'Chaimz B', text: "Went with 10 girls on a trip to Marrakesh and got super nice help to have an unforgettable day in the Agafay desert. They arranged everything for us so we could just enjoy and have fun. Recommended!" }, { name: 'Radoan Kibbo', text: "Super service from start to finish. They helped us find the most exotic Riad in the old town. We would recommend anyone who wants to explore Marrakech to contact Aladdin." }, { name: 'yousra boudraa', text: "We had a wonderful stay thanks to Aladin, who was very responsive and helpful. We were a group of 11 people, including a child and a baby." }, ]; const IMAGES = Array.from({ length: 16 }, (_, i) => 'assets/reviews/tour-' + String(i + 1).padStart(2, '0') + '.jpg'); const initials = (n) => n.split(/\s+/).filter(Boolean).slice(0, 2).map(w => w[0].toUpperCase()).join(''); const Stars = () => ( {'★★★★★'} ); function MS_ReviewsGallery() { const ctx = (window.MS_CTX && window.MS_CTX.useMS && window.MS_CTX.useMS()) || {}; const lang = ctx.lang || 'en'; const tx = (en, no, fr, de) => lang === 'no' ? no : lang === 'da' ? no : lang === 'fr' ? fr : lang === 'de' ? (de || en) : en; const [showAll, setShowAll] = useState(false); const [showAllRev, setShowAllRev] = useState(false); const galRef = useRef(null); const revRef = useRef(null); const visible = showAll ? IMAGES : IMAGES.slice(0, 4); const visibleRev = showAllRev ? REVIEWS : REVIEWS.slice(0, 4); return (
{/* Reviews */}

{tx('What Our Travellers Say', 'Hva våre reisende sier', 'Ce que disent nos voyageurs', 'Was unsere Reisenden sagen')}

5.0 · 28 {tx('Google reviews', 'Google-anmeldelser', 'avis Google', 'Google-Bewertungen')} · MarrakechStory Tours
{visibleRev.map((r, i) => (
{r.name}

{r.text}

))}
{REVIEWS.length > 4 && (
)}
{/* Gallery */}
); } window.MS_ReviewsGallery = MS_ReviewsGallery; })();