108 lines
2.5 KiB
HTML
108 lines
2.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>MPR</title>
|
|
<style>
|
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, monospace;
|
|
background: #0f0f0f;
|
|
color: #e0e0e0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 100vh;
|
|
}
|
|
.container {
|
|
text-align: center;
|
|
max-width: 600px;
|
|
padding: 2rem;
|
|
}
|
|
h1 {
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
letter-spacing: -0.02em;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
.subtitle {
|
|
color: #666;
|
|
font-size: 0.9rem;
|
|
margin-bottom: 2.5rem;
|
|
}
|
|
.cards {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 1rem;
|
|
}
|
|
a.card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
padding: 2rem 1.5rem;
|
|
background: #141414;
|
|
border: 1px solid #2a2a2a;
|
|
border-radius: 12px;
|
|
text-decoration: none;
|
|
color: #e0e0e0;
|
|
transition: all 0.2s;
|
|
}
|
|
a.card:hover {
|
|
border-color: #3b82f6;
|
|
background: #1a1a2e;
|
|
transform: translateY(-2px);
|
|
}
|
|
.card-icon {
|
|
font-size: 2.5rem;
|
|
line-height: 1;
|
|
}
|
|
.card-title {
|
|
font-size: 1.1rem;
|
|
font-weight: 600;
|
|
}
|
|
.card-desc {
|
|
font-size: 0.75rem;
|
|
color: #666;
|
|
line-height: 1.4;
|
|
}
|
|
.links {
|
|
margin-top: 2rem;
|
|
display: flex;
|
|
gap: 1.5rem;
|
|
justify-content: center;
|
|
}
|
|
.links a {
|
|
color: #555;
|
|
font-size: 0.75rem;
|
|
text-decoration: none;
|
|
transition: color 0.2s;
|
|
}
|
|
.links a:hover { color: #94a3b8; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>MPR</h1>
|
|
<p class="subtitle">Media Processing & Review</p>
|
|
<div class="cards">
|
|
<a class="card" href="/timeline/">
|
|
<div class="card-icon">▶</div>
|
|
<div class="card-title">Timeline</div>
|
|
<div class="card-desc">Browse assets, trim, transcode</div>
|
|
</a>
|
|
<a class="card" href="/chunker/">
|
|
<div class="card-icon">▦</div>
|
|
<div class="card-title">Chunker</div>
|
|
<div class="card-desc">Split media into segments, pipeline visualization</div>
|
|
</a>
|
|
</div>
|
|
<div class="links">
|
|
<a href="/admin/">Admin</a>
|
|
<a href="/api/graphql">GraphQL</a>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|