export interface Testimonial {
  id: string
  quote: string
  name: string
  team: string
  photo?: string
}

export const testimonials: Testimonial[] = [
  { id: 'testi-jiiana', quote: '"My favorite part of DLEAG is making new friends and seeing some of my old teammates. I also enjoy making new connections and bonds with people here."', name: 'Jiiana Perez', team: 'Valkyries', photo: '/images/players/testi-jiiana-perez.webp' },
  { id: 'testi-kyle', quote: '"DLEAG taught me that I won\'t be playing with my friends all my life. I have to play with other people and learn how to play with them."', name: 'Kyle Enriquez', team: 'Cyclones', photo: '/images/players/testi-kyle-enriquez.webp' },
  { id: 'testi-kylie', quote: '"DLEAG has taught me to never give up and to always work hard even when people are better and stronger than you."', name: 'Kylie Lim', team: 'Empire', photo: '/images/players/testi-kylie-lim.webp' },
  { id: 'testi-nolan', quote: '"Something that I am looking forward to for the rest of the season is to spend time with my teammates and winning the championship."', name: 'Nolan Calica', team: 'Mist', photo: '/images/players/testi-nolan-calica.webp' },
  { id: 'testi-slot-5', quote: '"My favorite thing about volleyball are all the memories you make along the way and how much love I have for the sport. I am hoping to learn more skills and create more memories with my team."', name: 'Shai Bulanadi', team: 'Pulse', photo: '/images/players/testi-shai-bulanadi.png' },
  { id: 'testi-slot-6', quote: '"I am a very defensive player and always wanting to get the ball up. I try to never let a ball drop. I am hoping to be better, train and work harder and be the best player that I could be."', name: 'Alyssa Wong-Martella', team: 'Cardinals', photo: '/images/players/testi-alyssa-wong-martella.png' },
  { id: 'testi-slot-7', quote: '"My favorite thing about Volleyball is making new friends along the way and winning games. I am hoping to get some more reps at DLEAG and to also get some more wins."', name: 'Eijjah Nava', team: 'Surge', photo: '/images/players/testi-eijjah-nava.png' },
  { id: 'testi-slot-8', quote: '"I try to be the most humble and the most energetic on the court and hope that people can also build off that energy. I am hoping to develop my volleyball skills and my mental skills through our Monday sessions."', name: 'Ethan Perez', team: 'Bears', photo: '/images/players/testi-ethan-perez.png' },
]
