You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
2.1 KiB
94 lines
2.1 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>OpenHamClock - Build Required</title>
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
background: #1a1a2e;
|
|
color: #eee;
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.container {
|
|
text-align: center;
|
|
padding: 40px;
|
|
max-width: 600px;
|
|
}
|
|
h1 {
|
|
color: #fbbf24;
|
|
font-size: 2.5rem;
|
|
margin-bottom: 20px;
|
|
}
|
|
p {
|
|
font-size: 1.1rem;
|
|
line-height: 1.6;
|
|
margin-bottom: 15px;
|
|
color: #aaa;
|
|
}
|
|
code {
|
|
background: #2d2d44;
|
|
padding: 4px 10px;
|
|
border-radius: 4px;
|
|
font-family: 'JetBrains Mono', monospace;
|
|
color: #4ade80;
|
|
}
|
|
.command {
|
|
background: #2d2d44;
|
|
padding: 20px;
|
|
border-radius: 8px;
|
|
margin: 30px 0;
|
|
text-align: left;
|
|
}
|
|
.command code {
|
|
display: block;
|
|
background: none;
|
|
padding: 5px 0;
|
|
}
|
|
a.button {
|
|
display: inline-block;
|
|
background: #4ade80;
|
|
color: #1a1a2e;
|
|
padding: 12px 24px;
|
|
border-radius: 6px;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
margin: 20px 0;
|
|
}
|
|
a.button:hover {
|
|
background: #22c55e;
|
|
}
|
|
.note {
|
|
font-size: 0.9rem;
|
|
color: #888;
|
|
margin-top: 30px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>📻 OpenHamClock</h1>
|
|
<p>The modular frontend needs to be built first.</p>
|
|
|
|
<a href="/index-monolithic.html" class="button">Use Classic Version Instead</a>
|
|
|
|
<p style="margin-top: 30px;">Or build the modular version:</p>
|
|
<div class="command">
|
|
<code>npm install</code>
|
|
<code>npm run build</code>
|
|
<code>npm start</code>
|
|
</div>
|
|
|
|
<p class="note">
|
|
The classic version works without building.<br>
|
|
The modular version requires Node.js 18+ to build.
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html>
|