= ({ reviwes }: ReviewsContainerProps) => {
+
+ const filteredReviews = reviwes.filter((review) => review.rating >= 3);
+
+ return (
+
+
+ {filteredReviews.map((review) => (
+
+ ))}
+
+
+ );
+};
+
+export default ReviewsContainer;
+
diff --git a/src/mockData/mockReviwes.ts b/src/mockData/mockReviwes.ts
new file mode 100644
index 0000000..702bee4
--- /dev/null
+++ b/src/mockData/mockReviwes.ts
@@ -0,0 +1,42 @@
+interface Reviews {
+ description: string;
+ userImage: string;
+ rating: number;
+ userName: string;
+ }
+
+const reviews: Reviews[] = [
+ {
+ description: '¡Me encantó el producto! La calidad es excelente y el servicio al cliente fue muy amable. Definitivamente lo recomendaré¡Me encantó el producto! La calidad es excelente y el servicio al cliente fue muy amable. Definitivamente lo recomendaré.¡Me encantó el producto! La calidad es excelente y el servicio al cliente fue muy amable. Definitivamente lo recomendaré.¡Me encantó el producto! La calidad es excelente y el servicio al cliente fue muy amable. Definitivamente lo recomendaré.',
+ userImage: 'https://us.123rf.com/450wm/tuktukdesign/tuktukdesign1606/tuktukdesign160600119/59070200-icono-de-usuario-hombre-perfil-hombre-de-negocios-avatar-icono-persona-en-la-ilustraci%C3%B3n.jpg',
+ rating: 5,
+ userName: 'Juan Pérez',
+ },
+ {
+ description: 'El producto superó mis expectativas. La entrega fue rápida y todo llegó en perfecto estado. ¡Gracias!',
+ userImage: 'https://us.123rf.com/450wm/tuktukdesign/tuktukdesign1606/tuktukdesign160600119/59070200-icono-de-usuario-hombre-perfil-hombre-de-negocios-avatar-icono-persona-en-la-ilustraci%C3%B3n.jpg',
+ rating: 4,
+ userName: 'María González',
+ },
+ {
+ description: 'Estoy muy satisfecho con mi compra. El producto es de alta calidad y el proceso de compra fue muy fácil.',
+ userImage: 'https://us.123rf.com/450wm/tuktukdesign/tuktukdesign1606/tuktukdesign160600119/59070200-icono-de-usuario-hombre-perfil-hombre-de-negocios-avatar-icono-persona-en-la-ilustraci%C3%B3n.jpg',
+ rating: 5,
+ userName: 'Carlos Rodríguez',
+ },
+ {
+ description: 'El producto llegó tarde y tenía algunos defectos. No estoy contento con la experiencia de compra.',
+ userImage: 'https://us.123rf.com/450wm/tuktukdesign/tuktukdesign1606/tuktukdesign160600119/59070200-icono-de-usuario-hombre-perfil-hombre-de-negocios-avatar-icono-persona-en-la-ilustraci%C3%B3n.jpg',
+ rating: 2,
+ userName: 'Laura López',
+ },
+ {
+ description: 'Buena relación calidad-precio. Estoy satisfecho con el producto y el servicio.',
+ userImage: 'https://us.123rf.com/450wm/tuktukdesign/tuktukdesign1606/tuktukdesign160600119/59070200-icono-de-usuario-hombre-perfil-hombre-de-negocios-avatar-icono-persona-en-la-ilustraci%C3%B3n.jpg',
+ rating: 4,
+ userName: 'Ana Martínez',
+ },
+ ];
+
+ export default reviews;
+
\ No newline at end of file
diff --git a/src/types/icons.d.ts b/src/types/icons.d.ts
index 5834176..9640789 100644
--- a/src/types/icons.d.ts
+++ b/src/types/icons.d.ts
@@ -1 +1 @@
-export type IconTypes = | 'CardCredit' | 'CarShoping' | 'Cash' | 'Facebook' | 'HamburguerClose' | 'HamburguerOpen' | 'Heart' | 'icon' | 'Instagram' | 'Login' | 'MapLocation' | 'Moon' | 'SearchIcon' | 'Shield' | 'Sun' | 'Truck' | 'warranty' | 'Whatsapp'
\ No newline at end of file
+export type IconTypes = | 'CardCredit' | 'CarShoping' | 'Cash' | 'Facebook' | 'HamburguerClose' | 'HamburguerOpen' | 'Heart' | 'icon' | 'Instagram' | 'Login' | 'MapLocation' | 'Moon' | 'quotationMarks' | 'SearchIcon' | 'Shield' | 'Sun' | 'Truck' | 'warranty' | 'Whatsapp'
\ No newline at end of file