← back to Hormuzy
mockups/082-carpenter-bench.html
223 lines
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>carpenter-workbench — Four Horsemen Studio</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@700&family=Source+Code+Pro:wght@400&display=swap">
<style>
* { box-sizing: border-box; }
body {
margin: 0;
font-family: 'Source Code Pro', monospace;
background-color: #fbf6e9;
color: #1a0e00;
height: 900px;
display: flex;
flex-direction: column;
font-size: 14px;
}
header {
background-color: #dba673;
color: #1a0e00;
padding: 16px 24px;
display: flex;
align-items: center;
justify-content: space-between;
font-family: 'Crimson Pro', serif;
font-size: 24px;
border-bottom: 4px solid #7a5c3e;
}
header .brand {
font-weight: 700;
}
header .project-picker {
background: #fbf6e9;
border: 2px solid #3a3a3a;
padding: 6px 12px;
border-radius: 4px;
font-size: 14px;
}
header .status {
background: #1a0e00;
color: #fbf6e9;
padding: 6px 12px;
border-radius: 4px;
font-weight: bold;
}
main {
display: flex;
flex: 1;
overflow: hidden;
}
.left-pane {
width: 40%;
background-color: #fbf6e9;
border-right: 4px solid #3a3a3a;
display: flex;
flex-direction: column;
}
.chat-log {
padding: 16px;
overflow-y: auto;
flex: 1;
display: flex;
flex-direction: column;
gap: 12px;
}
.message.user {
background-color: #3a3a3a;
color: #fbf6e9;
padding: 12px;
border-radius: 6px;
max-width: 70%;
}
.message.system {
background-color: #7a5c3e;
color: #fbf6e9;
padding: 12px;
border-radius: 6px;
max-width: 70%;
}
.chat-input {
display: flex;
padding: 12px;
border-top: 2px solid #3a3a3a;
}
.chat-input input {
flex: 1;
padding: 8px;
font-size: 14px;
border: 2px solid #3a3a3a;
border-radius: 4px;
margin-right: 8px;
}
.chat-input button {
background-color: #1a0e00;
color: #fbf6e9;
border: none;
padding: 8px 16px;
border-radius: 4px;
cursor: pointer;
}
.right-pane {
width: 60%;
display: flex;
flex-direction: column;
padding: 16px;
}
.sub-panels {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 16px;
flex: 1;
overflow-y: auto;
}
.panel {
background-color: #fbf6e9;
border: 2px solid #3a3a3a;
border-radius: 6px;
padding: 16px;
display: flex;
flex-direction: column;
}
.panel-header {
font-family: 'Crimson Pro', serif;
font-size: 18px;
margin-bottom: 12px;
color: #1a0e00;
}
.panel-body {
font-family: 'Source Code Pro', monospace;
color: #3a3a3a;
}
.panel-body pre {
font-size: 14px;
background: #fbf6e9;
border: 1px solid #7a5c3e;
padding: 8px;
border-radius: 4px;
overflow-x: auto;
}
</style>
</head>
<body>
<header>
<div class="brand">FOUR HORSEMEN STUDIO</div>
<div>
<select class="project-picker">
<option>Project Atlas</option>
<option>Project Horizon</option>
<option>Project Forge</option>
</select>
<div class="status">idle</div>
</div>
</header>
<main>
<div class="left-pane">
<div class="chat-log">
<div class="message user">/run-topic: Joining the grain at 45 degrees</div>
<div class="message system">Adjusting router bit to 45°, ensuring kerf matches oak's growth rings</div>
<div class="message user">/stampede: 3x dovetail joints</div>
<div class="message system">Engaging three routers in synchronized motion, cutting interlocking tails and pins</div>
</div>
<div class="chat-input">
<input type="text" placeholder="Type a command or message...">
<button>Send</button>
</div>
</div>
<div class="right-pane">
<div class="sub-panels">
<div class="panel">
<div class="panel-header">Preview</div>
<div class="panel-body">
<pre>
// Mockup of mortise and tenon joint
|------------------|
| |
| |
| |
|------------------|
</pre>
</div>
</div>
<div class="panel">
<div class="panel-header">Paper</div>
<div class="panel-body">
<pre>
[Hand-drawn sketch]
┌───────────────┐
│ ∠ ∠ │
│ ∠ ∠ │
└───────────────┘
"Align tenon shoulders with mortise depth"
</pre>
</div>
</div>
<div class="panel">
<div class="panel-header">Figma</div>
<div class="panel-body">
<pre>
[Design canvas]
- 3D model of a table leg with through-tenons
- Material: White oak, grain direction aligned
- Joint tolerance: 0.002" clearance
</pre>
</div>
</div>
<div class="panel">
<div class="panel-header">Canva</div>
<div class="panel-body">
<pre>
[Collage]
- Chisel marks on a workbench
- Router table with dovetail jig
- Hand-carved joinery samples
Tagline: "Where wood meets intention"
</pre>
</div>
</div>
</div>
</div>
</main>
</body>
</html>