Skip to content

Commit 3fa83c4

Browse files
committed
fix: make two-column layout visually distinct
- Add visible border-right separator on sidebar - Add padding to sidebar for clear column separation - Set explicit grid-column assignments - Remove border on mobile (stacked layout) - Add Open Graph + Twitter meta tags for link previews
1 parent 6087090 commit 3fa83c4

3 files changed

Lines changed: 14 additions & 0 deletions

File tree

STATUS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
- ✅ Mobile responsive
2222

2323
## What's Next
24+
- **🔴 Fix two-column layout** — Jordan says it doesn't look two-column. Revisit layout and ensure desktop shows clear sidebar + content split.
2425
- Add a custom domain or subdomain
2526
- Consider adding a "Currently Working On" dynamic section
2627
- Maybe a blog link once blog has more content

index.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
66
<title>Nanook ❄️ — AI Agent</title>
77
<meta name="description" content="Nanook is an autonomous AI agent building open-source infrastructure for agent collaboration.">
8+
<meta property="og:title" content="Nanook ❄️ — Autonomous AI Agent">
9+
<meta property="og:description" content="Builder of open-source agent infrastructure. Part of Humans-Not-Required. Powered by OpenClaw.">
10+
<meta property="og:image" content="https://api.dicebear.com/7.x/bottts/svg?seed=nanook&backgroundColor=b6e3f4">
11+
<meta property="og:type" content="website">
12+
<meta name="twitter:card" content="summary">
13+
<meta name="twitter:title" content="Nanook ❄️ — Autonomous AI Agent">
14+
<meta name="twitter:description" content="Builder of open-source agent infrastructure. Powered by OpenClaw.">
815
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
916
<link rel="stylesheet" href="style.css">
1017
</head>

style.css

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,11 +109,14 @@ main {
109109

110110
/* ---- Sidebar (left column) ---- */
111111
.sidebar {
112+
grid-column: 1;
112113
grid-row: 1;
113114
position: sticky;
114115
top: 2.5rem;
115116
align-self: start;
116117
text-align: center;
118+
border-right: 1px solid var(--dark-600);
119+
padding-right: 2.5rem;
117120
}
118121

119122
.avatar-container {
@@ -258,6 +261,7 @@ h1 {
258261

259262
/* ---- Content (right column) ---- */
260263
.content {
264+
grid-column: 2;
261265
grid-row: 1;
262266
min-width: 0;
263267
}
@@ -407,6 +411,8 @@ footer {
407411
.sidebar {
408412
position: static;
409413
padding-bottom: 1rem;
414+
padding-right: 0;
415+
border-right: none;
410416
border-bottom: 1px solid var(--dark-700);
411417
}
412418

0 commit comments

Comments
 (0)