Skip to content

Commit a1696d3

Browse files
feat: adicionado novo keynote
1 parent dec5ac6 commit a1696d3

2 files changed

Lines changed: 23 additions & 3 deletions

File tree

public/andrews-medina.jpeg

30.5 KB
Loading

src/app/App.tsx

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,14 @@ function AppContent() {
8585
image?: string;
8686
topic?: string;
8787
abstract?: string;
88-
bio?: string;
88+
bio?: React.ReactNode;
8989
};
9090

9191
const keynotesData: KeynoteSpeaker[] = [
9292
{
9393
id: 1,
9494
name: "Marcos Kalinowski",
95-
institution: "PUC-Rio, Brazil",
95+
//institution: "PUC-Rio, Brazil",
9696
image: "marcos-kalinowski.jpg",
9797
bio: `Marcos Kalinowski is a Professor of Software Engineering at PUC-Rio, Brazil, where he leads the Software & AI Engineering Lab (SAIL), \
9898
supervises doctoral research, and conducts R&D projects in collaboration with industry partners. His research focuses on AI Engineering, \
@@ -111,7 +111,27 @@ function AppContent() {
111111
},
112112
{
113113
id: 2,
114-
isPlaceholder: true
114+
name: "Andrews Medina",
115+
//institution: "AI Researcher",
116+
image: "andrews-medina.jpeg",
117+
bio: (
118+
<>
119+
Andrews Medina has spent his career building and leading engineering teams behind large-scale systems.
120+
His work combines leadership and hands-on experience—from writing code to deploying systems that serve millions of users.
121+
He held leadership engineering positions at Globo.com, Jusbrasil, and Indaband, where he built and scaled teams and infrastructure to operate at high volume.
122+
He is the co-creator of the open-source projects{' '}
123+
<a
124+
href="https://tsuru.io/"
125+
target="_blank"
126+
rel="noopener noreferrer"
127+
className="font-semibold text-slate-900 underline hover:text-slate-700 transition-colors"
128+
>
129+
tsuru.io
130+
</a>{' '}
131+
and Splinter. More recently, his focus has shifted to researching sustainable and scalable ways to build AI agents.
132+
When he's not architecting distributed systems, he can be found reading or playing guitar.
133+
</>
134+
)
115135
}
116136
];
117137

0 commit comments

Comments
 (0)