Switch to version 1: remove src/pages/HomePage/sections/Testimonials.tsx

This commit is contained in:
2026-06-13 16:02:40 +00:00
parent 66365c7c87
commit e45a5a6723

View File

@@ -1,37 +0,0 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "testimonials" section.
import React from 'react';
import TestimonialMarqueeOverlayCards from '@/components/sections/testimonial/TestimonialMarqueeOverlayCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function TestimonialsSection(): React.JSX.Element {
return (
<div id="testimonials" data-section="testimonials">
<SectionErrorBoundary name="testimonials">
<TestimonialMarqueeOverlayCards
tag="Comunidad"
title="Experiencia USMA"
description="Lo que dicen nuestros estudiantes."
testimonials={[
{
name: "Ana R.", role: "Estudiante", company: "Ingeniería", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/cropped-image-glad-female-smiles-gently-has-hiking-tour-with-rucksack_273609-25972.jpg"},
{
name: "Juan M.", role: "Egresado", company: "Negocios", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-woman-library_23-2149204737.jpg"},
{
name: "María D.", role: "Estudiante", company: "Derecho", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/cool-student-man-notebook_1149-1788.jpg"},
{
name: "Pedro L.", role: "Egresado", company: "Arquitectura", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/cheerful-african-beautiful-woman-student-smiling-holding-books-university-education-concept_176420-12453.jpg"},
{
name: "Lucía P.", role: "Estudiante", company: "Diseño", rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/young-man-travelling-by-city-bus_23-2148958101.jpg"},
]}
/>
</SectionErrorBoundary>
</div>
);
}