Files
WebForm-mw/components/SiteChrome.tsx
T
Joel Brock b120075ca2 Rebrand: Co-op Check-in -> Co-op Survey in user-facing copy
Updates the tool product name across the app UI (header, page title,
section labels, form buttons, success/error states, report stat labels),
README, deployment docs, and the CiviCRM email template guidance.
Custom domain references move from check-in.fci.coop to survey.fci.coop
(DNS update still required).

The underlying CiviCRM "Check-in (organizing)" activity type, custom
group machine names (Check_in_data__organizing_), health-check ids,
and the internal org_engagement_check_in form id are unchanged --
those are CiviCRM contract surfaces, not product copy.
2026-06-04 17:12:03 -07:00

58 lines
2.0 KiB
TypeScript

import Image from "next/image";
import Link from "next/link";
export function SiteHeader() {
return (
<header className="border-b border-rule bg-paper/80 backdrop-blur-sm">
<div className="mx-auto flex max-w-3xl items-center justify-between px-4 py-5 sm:px-6">
<Link
href="https://fci.coop"
className="group flex items-center gap-4 text-ink no-underline focus:outline-none"
aria-label="Food Co-op Initiative — fci.coop"
>
<Image
src="/fci-logo.png"
alt="Food Co-op Initiative"
width={130}
height={105}
priority
className="h-12 w-auto sm:h-14"
/>
<span className="hidden text-[11px] uppercase tracking-[0.18em] text-ink-mute sm:inline-block sm:border-l sm:border-rule sm:pl-4">
Co-op Survey
</span>
</Link>
<nav aria-label="Primary">
<Link
href="https://fci.coop"
className="font-body text-sm text-ink-soft hover:text-leaf-700 transition-colors px-2 py-1"
>
fci.coop
</Link>
</nav>
</div>
</header>
);
}
export function SiteFooter() {
return (
<footer className="mt-auto border-t border-rule bg-paper-2/60">
<div className="mx-auto max-w-3xl px-4 py-7 sm:px-6">
<div className="flex flex-col gap-3 sm:flex-row sm:items-baseline sm:justify-between">
<p className="font-display text-sm italic text-ink-soft">
&ldquo;Thank you for completing this survey.&rdquo;
</p>
<p className="text-xs text-ink-mute">
Need a fresh link? Contact <a href="mailto:survey@fci.coop">Chris @ FCI</a>.
</p>
</div>
<p className="mt-4 text-xs text-ink-mute leading-relaxed">
Your responses go directly to your co-op&apos;s record. This page is only reachable through a personalized link issued to you.
</p>
</div>
</footer>
);
}