Skip to content

Commit 43034c4

Browse files
khaliqgantclaude
andcommitted
footer: balance and align with the educational framing
Left side gets the logo + wordmark + a one-line tagline matching the new positioning ("A working manual on agents that don't wait to be asked"). Right side becomes a 2x2 link grid (Essays, Triggers, About, GitHub), right-aligned on desktop so the column has weight rather than a single lonely link. Bottom line carries the small print — copyright + type credit — separated by a hairline rule. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 05a66c3 commit 43034c4

1 file changed

Lines changed: 32 additions & 21 deletions

File tree

components/site-footer.tsx

Lines changed: 32 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,49 @@
11
import Link from "next/link";
2+
import { SiteLogo } from "@/components/site-logo";
23

34
export function SiteFooter() {
45
return (
56
<footer className="relative z-20 mt-32 border-t border-rule/70">
6-
<div className="mx-auto max-w-6xl px-6 py-12 sm:px-10">
7-
<div className="flex flex-col gap-6 sm:flex-row sm:items-end sm:justify-between">
8-
<div className="max-w-md">
9-
<p className="font-display text-2xl text-ink">Proactive Agents</p>
10-
<p className="mt-2 text-sm leading-relaxed text-ink-soft">
11-
The runtime for agents that act on their own. Schedules,
12-
triggers, watchers, durable wake/sleep. Made by{" "}
13-
<a
7+
<div className="mx-auto max-w-6xl px-6 py-14 sm:px-10">
8+
<div className="grid gap-10 sm:grid-cols-12 sm:gap-8">
9+
{/* Brand */}
10+
<div className="sm:col-span-7">
11+
<div className="flex items-center gap-3">
12+
<SiteLogo className="h-7 w-auto" />
13+
<p className="font-display text-2xl text-ink">Proactive Agents</p>
14+
</div>
15+
<p className="mt-3 max-w-md font-serif text-[0.95rem] leading-relaxed text-ink-soft">
16+
A working manual on the agents that don&rsquo;t wait to be asked.
17+
By <a
1418
href="https://github.com/AgentWorkforce"
1519
className="text-terracotta hover:underline"
16-
>
17-
AgentWorkforce
18-
</a>
19-
.
20+
>AgentWorkforce</a>.
2021
</p>
2122
</div>
22-
<div className="flex flex-col items-start gap-2 text-sm text-ink-soft sm:items-end">
23+
24+
{/* Links */}
25+
<nav className="sm:col-span-5 grid grid-cols-2 gap-x-8 gap-y-2 text-sm text-ink-soft sm:justify-items-end">
26+
<Link href="/posts" className="hover:text-terracotta transition-colors">
27+
Essays
28+
</Link>
29+
<Link href="/#triggers" className="hover:text-terracotta transition-colors">
30+
Triggers
31+
</Link>
32+
<Link href="/about" className="hover:text-terracotta transition-colors">
33+
About
34+
</Link>
2335
<a
2436
href="https://github.com/AgentWorkforce"
2537
className="hover:text-terracotta transition-colors"
2638
>
27-
GitHub
39+
GitHub
2840
</a>
29-
<Link href="/about" className="hover:text-terracotta transition-colors">
30-
About
31-
</Link>
32-
<p className="mt-3 text-xs text-ink-faint">
33-
Crafted by AgentWorkforce.
34-
</p>
35-
</div>
41+
</nav>
42+
</div>
43+
44+
<div className="mt-10 flex flex-col items-start justify-between gap-2 border-t border-rule/60 pt-6 text-xs text-ink-faint sm:flex-row sm:items-center">
45+
<p>© {new Date().getFullYear()} AgentWorkforce. Made with care.</p>
46+
<p>Set in Fraunces &amp; Instrument Serif.</p>
3647
</div>
3748
</div>
3849
</footer>

0 commit comments

Comments
 (0)