38 lines
1.0 KiB
HTML
38 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>The Workshop — The Wizard's Tower</title>
|
|
<style>
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
body { background: #0a0a0f; color: #e0d8c8; font-family: Georgia, serif; }
|
|
#scene {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
.placeholder {
|
|
text-align: center;
|
|
color: #6a6050;
|
|
}
|
|
.placeholder h1 { font-size: 1.2rem; font-weight: normal; margin-bottom: 1rem; }
|
|
.placeholder p { font-size: 0.85rem; }
|
|
.placeholder a { color: #8a7f6a; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="scene">
|
|
<div class="placeholder">
|
|
<h1>The Workshop</h1>
|
|
<p>Timmy's world is being built.</p>
|
|
<p><a href="/">← Back to the Tower</a></p>
|
|
</div>
|
|
</div>
|
|
<!-- Three.js scene will mount to #scene -->
|
|
<!-- <script type="module" src="main.js"></script> -->
|
|
</body>
|
|
</html>
|