|
1 | 1 | import Link from "next/link"; |
| 2 | +import { SiteLogo } from "@/components/site-logo"; |
2 | 3 |
|
3 | 4 | export function SiteFooter() { |
4 | 5 | return ( |
5 | 6 | <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’t wait to be asked. |
| 17 | + By <a |
14 | 18 | href="https://github.com/AgentWorkforce" |
15 | 19 | className="text-terracotta hover:underline" |
16 | | - > |
17 | | - AgentWorkforce |
18 | | - </a> |
19 | | - . |
| 20 | + >AgentWorkforce</a>. |
20 | 21 | </p> |
21 | 22 | </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> |
23 | 35 | <a |
24 | 36 | href="https://github.com/AgentWorkforce" |
25 | 37 | className="hover:text-terracotta transition-colors" |
26 | 38 | > |
27 | | - GitHub → |
| 39 | + GitHub ↗ |
28 | 40 | </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 & Instrument Serif.</p> |
36 | 47 | </div> |
37 | 48 | </div> |
38 | 49 | </footer> |
|
0 commit comments