nexo-solutions-review-carousel
Version:
A customizable review carousel component for React applications
76 lines (75 loc) • 4.08 kB
JavaScript
import React from 'react';
import { ReviewCarousel } from 'nexo-solutions-review-carousel';
// Import required CSS
import 'nexo-solutions-review-carousel/dist/index.css';
import 'swiper/css';
import 'swiper/css/pagination';
// Example data similar to your restaurant website
var ReviewsSection = function (_a) {
var _b = _a.language, language = _b === void 0 ? 'en' : _b;
// Restaurant testimonials (similar to your config)
var testimonials = [{
name: "Manfred Toppel",
location: {
en: "Local Guide",
pt: "Guia Local"
},
comment: {
en: "Piri-Piri 4 ever! Great fish dishes, superbe meat grills, very friendly people, very obliging and with a good twist on humor. One of the best restaurants around Lagos. Do not miss it.",
pt: "Piri-Piri 4 sempre! Ótimos pratos de peixe, excelentes grelhados de carne, pessoas muito simpáticas, muito prestativas e com um bom toque de humor. Um dos melhores restaurantes da região de Lagos. Não perca."
},
rating: 5,
image: "/images/reviewers/manfred.jpg",
sourceUrl: "https://maps.app.goo.gl/XVZMszuoXkPhCF3m9"
},
{
name: "Jackie Samuel",
location: {
en: "Visitor",
pt: "Visitante"
},
comment: {
en: "Beautiful spot on the boardwalk. Great views, lovely atmosphere, good service and amazing food. I ordered the mackerel which was really good. I also indulged in a slice of delicious lemon cake with my coffee.",
pt: "Lindo lugar no calçadão. Ótimas vistas, ambiente adorável, bom serviço e comida incrível. Pedi a cavala que estava mesmo boa. Também me deliciei com uma fatia de delicioso bolo de limão com o meu café."
},
rating: 5,
image: "/images/reviewers/jackie.png",
sourceUrl: "https://maps.app.goo.gl/x18cufFadaAvjDr2A"
},
{
name: "Daniel Blain",
location: {
en: "Local Guide",
pt: "Guia Local"
},
comment: {
en: "Fantastic place, on the beach. Wondrful views of the ocean. Great service, wonderful food and very reasonable prices. A must do when in Lagos. Quiet and intimate.",
pt: "Lugar fantástico, na praia. Vistas maravilhosas do oceano. Ótimo serviço, comida maravilhosa e preços muito razoáveis. Uma visita obrigatória quando estiver em Lagos. Calmo e íntimo."
},
rating: 5,
image: "/images/reviewers/daniel.png",
sourceUrl: "https://maps.app.goo.gl/AVuqqS2YecqdTPMW8"
}
];
return (React.createElement("section", { className: "py-12 bg-gray-100", id: "testimonials" },
React.createElement("div", { className: "container mx-auto px-4" },
React.createElement("div", { className: "text-center mb-12" },
React.createElement("h2", { className: "text-3xl font-bold mb-4" },
" ",
language === 'en' ? 'Customer Reviews' : 'Avaliações dos Clientes',
" ",
React.createElement(, null),
"h2> ",
React.createElement("div", { className: "w-24 h-1 bg-[#ffc800] mx-auto" },
" ",
React.createElement(, null),
"div> ",
React.createElement(, null),
"div>",
" ",
React.createElement(ReviewCarousel, { reviews: testimonials, language: language, accentColor: "#ffc800" }),
React.createElement(, null),
"div> ",
React.createElement(, null),
"section> ); }; export default ReviewsSection;"))))));
};