Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dev Pages - Experiments</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 20px;
line-height: 1.6;
}
h1 {
color: #333;
}
.experiments {
list-style: none;
padding: 0;
}
.experiments li {
margin: 10px 0;
padding: 15px;
background: #f5f5f5;
border-radius: 5px;
}
.experiments a {
text-decoration: none;
color: #0066cc;
font-weight: 500;
}
.experiments a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>Dev Pages - Experiments</h1>
<p>A collection of small experiments and studies.</p>

<h2>Available Experiments</h2>
<ul class="experiments">
<li>
<a href="met-hallway-study/">Met Hallway Study</a>
</li>
</ul>
</body>
</html>