|
| 1 | +import Link from "next/link"; |
| 2 | + |
| 3 | +export function SiteFooter() { |
| 4 | + return ( |
| 5 | + <footer className="border-t bg-background"> |
| 6 | + <div className="container px-4 sm:px-6 py-6 sm:py-8"> |
| 7 | + <div className="mx-auto max-w-5xl"> |
| 8 | + <div className="grid gap-6 sm:grid-cols-2 lg:grid-cols-3"> |
| 9 | + {/* Brand */} |
| 10 | + <div className="space-y-3"> |
| 11 | + <Link href="/" className="font-bold text-lg"> |
| 12 | + prosdevlab |
| 13 | + </Link> |
| 14 | + <p className="text-sm text-muted-foreground max-w-xs"> |
| 15 | + Foundational kits and patterns for building robust software |
| 16 | + systems. |
| 17 | + </p> |
| 18 | + </div> |
| 19 | + |
| 20 | + {/* Navigation */} |
| 21 | + <div className="space-y-3"> |
| 22 | + <h3 className="font-semibold text-sm">Catalog</h3> |
| 23 | + <nav className="flex flex-col space-y-2 text-sm"> |
| 24 | + <Link |
| 25 | + href="/kits" |
| 26 | + className="text-muted-foreground hover:text-foreground transition-colors" |
| 27 | + > |
| 28 | + Kits |
| 29 | + </Link> |
| 30 | + <Link |
| 31 | + href="/tools" |
| 32 | + className="text-muted-foreground hover:text-foreground transition-colors" |
| 33 | + > |
| 34 | + Tools |
| 35 | + </Link> |
| 36 | + </nav> |
| 37 | + </div> |
| 38 | + |
| 39 | + {/* Resources (placeholder for future) */} |
| 40 | + <div className="space-y-3"> |
| 41 | + <h3 className="font-semibold text-sm">Resources</h3> |
| 42 | + <nav className="flex flex-col space-y-2 text-sm"> |
| 43 | + <a |
| 44 | + href="https://github.com/prosdevlab" |
| 45 | + target="_blank" |
| 46 | + rel="noopener noreferrer" |
| 47 | + className="text-muted-foreground hover:text-foreground transition-colors" |
| 48 | + > |
| 49 | + GitHub |
| 50 | + </a> |
| 51 | + </nav> |
| 52 | + </div> |
| 53 | + </div> |
| 54 | + |
| 55 | + {/* Copyright */} |
| 56 | + <div className="mt-8 pt-6 border-t"> |
| 57 | + <p className="text-xs text-muted-foreground text-center sm:text-left"> |
| 58 | + © {new Date().getFullYear()} prosdevlab. Built to survive contact |
| 59 | + with reality. |
| 60 | + </p> |
| 61 | + </div> |
| 62 | + </div> |
| 63 | + </div> |
| 64 | + </footer> |
| 65 | + ); |
| 66 | +} |
0 commit comments