wanted to build everything reusable and made a function to build the different testimonials with the needed structure. I had the data in a separate file and imported it. For the different colors I initally gave each graduate a keyword as props and wanted to build the classes dynamically, which tailwind doesn't support. so I made different color scheme objects, which each had a key and then the different classes for text color, backgroundcolor,.. This solved the problem of the dynamically made classes, since they were known at buildtime now. each graduate had the key for a color scheme in its object. but in order that it is recognized as key and not as a simple string, I had to export the interface to my data file. This worked if I ran it on my development server, but when I wanted to build the project with vercel, It told me I couldn't export the interface. So I moved all my data to the page.tsx
What specific areas of your project would you like help with?maybe some insights or tips about the problems I encountered