This commit is contained in:
Timothy Jaeryang Baek
2025-06-17 02:25:45 +04:00
parent 5826f70bab
commit f6497b803a

View File

@@ -6,7 +6,8 @@ export const Testimonals = ({bannerClassName = 'h-18', label= true, description=
{
imgSrc: "https://avatars.githubusercontent.com/u/5860369?v=4",
url: "https://github.com/Ithanil/",
name: "Jan Kessler, AI Architect @ JGU Mainz",
name: "Jan Kessler, AI Architect",
company: "JGU Mainz",
content:
"Deploying an self-hosted AI chat stack for a large university like the Johannes Gutenberg University Mainz demands scalable and seamlessly integrable solutions. As the AI Architect at the university's Data Center, I chose Open WebUI as our chat frontend, impressed by its out-of-the-box readiness for enterprise environments and its rapidly paced, community-driven development. Now, our fully open-source stack comprising LLMs, proxy/loadbalancer, and frontend is successfully serving our user base of 30,000+ students and 5,000+ employees, garnering very positive feedback. Open WebUIs user-centric design, rich feature set, and adaptability have solidified it as an outstanding choice for our institution.",
},
@@ -24,7 +25,8 @@ export const Testimonals = ({bannerClassName = 'h-18', label= true, description=
<img src={item.imgSrc} alt={item.name} className="rounded-full size-20 mb-2" />
</div>
<h3 className="font-medium hover:underline no-underline ">{item.name}</h3>
<div className="text-sm font-medium hover:underline no-underline ">{item.name}</div>
<div className="text-sm font-medium hover:underline no-underline ">@ {item.company}</div>
</a>
</div>
<p className="text-sm italic">{item.content}</p>