import Link from "next/link"; export function SiteHeader() { return (
Food Co-op Initiative Co-op Check-in
); } export function SiteFooter() { return ( ); } /** * "Sown" — a stylized geometric mark: a center point (the co-op) with six * radiating sprouts (the six framework stages). Inscribed in a soft circle * (the cooperative principle). Pure SVG, scales cleanly, no external asset. * * Drawn at 40px; can be sized via className. */ function Logo({ className = "" }: { className?: string }) { return ( {/* Outer cooperative ring */} {/* Six sprouts radiating from center, one per stage */} {/* North */} {/* NE */} {/* SE */} {/* South */} {/* SW */} {/* NW */} {/* Center seed */} ); }