import React from «react»;
import { Card, CardContent } from «@/components/ui/card»;
import { motion } from «framer-motion»;
const characters = [
{
name: «Maria Sanchis»,
role: «EIT-Health»,
color: «#ffadad»,
text: [
«For me, it is essential.»,
«It’s the first time we talk about an action plan.»,
«A cross-border need → it’s really complex.»,
«For kids, this is essential.»,
«And also how it’s attractive for innovators.»
]
},
{
name: «Marc Van den Bulcke»,
role: «Sciensano»,
color: «#ffd6a5»,
text: [
«We need slow and matching the demand.»,
«Include pillar for demand-driven need like yours.»,
«I’m still trying to help improve the healthcare system.»,
«I see the interest, but nobody did it!»
]
},
{
name: «Arnau Valls»,
role: «Sant Joan de Déu Hospital, Catalonia»,
color: «#fdffb6»,
text: [
«Fast & Learning»,
«We know the complexity, but no data or structuring and learning experience.»,
«This kind of project must go through the community.»
]
},
{
name: «Marek Migdal»,
role: «Memorial Children’s Hospital, Warsaw, Poland»,
color: «#caffbf»,
text: [«Fast and Learning experience»]
}
];
export default function HealthcareComic() {
return (
{characters.map((char, index) => (
{char.name} ({char.role})
{char.text.map((line, i) => (
- «{line}»
))}
))}
);
}