README / index.html
jason-res's picture
Update index.html
7b49c90 verified
Raw
History Blame Contribute Delete
1.85 kB
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>MAP Challenge</title>
<style>
:root {
color-scheme: light;
}
body {
margin: 0;
padding: 32px;
font-family: Inter, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
background: #f8fafc;
color: #0f172a;
}
.card {
max-width: 980px;
margin: 0 auto;
background: #ffffff;
border: 1px solid #e2e8f0;
border-radius: 12px;
padding: 24px;
box-shadow: 0 8px 28px rgba(2, 6, 23, 0.06);
}
h1 {
margin: 0 0 16px;
font-size: 28px;
}
p {
margin: 0 0 12px;
line-height: 1.55;
font-size: 16px;
}
ul {
margin: 0 0 4px;
padding-left: 20px;
}
li {
margin: 8px 0;
}
a {
color: #1d4ed8;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<main class="card">
<h1>MAP Challenge</h1>
<p>
Welcome to the MAP challenge organised by the University of Zurich and Google Deepmind! Our aim is to run the
first assessment of multimodal AI systems on accessibility planning for journeys in the real world.
</p>
<p>Current pilot components:</p>
<ul>
<li><a href="https://huggingface.co/spaces/map-setup-pilot/challenge-home">Public challenge home</a></li>
<li><a href="https://huggingface.co/spaces/map-setup-pilot/leaderboard">Leaderboard Space</a></li>
<li><a href="https://huggingface.co/spaces/map-setup-pilot/submission-portal">Submission Space</a></li>
</ul>
</main>
</body>
</html>