import { Suspense } from "react"; import { ReportView } from "@/components/ReportView"; import { SiteHeader, SiteFooter } from "@/components/SiteChrome"; import { formConfig } from "@/config/form"; interface PageProps { searchParams: Promise<{ cid?: string; cs?: string }>; } export const metadata = { title: "Activity report — Food Co-op Initiative", robots: { index: false, follow: false }, }; export default async function ReportPage({ searchParams }: PageProps) { const { cid, cs } = await searchParams; return ( <> Skip to content
{!cid || !cs ? ( ) : ( )}
); } function ReportIntro() { return (

Activity report · Co-op organizing

What we know so far

A read-only summary of every value your co-op has shared through past check-ins, grouped by stage. The most recent entry sits at the top of each row; expand a row to see how a number or note has changed over time.

); } function MissingLinkParams() { return (

This link is missing required information.

Open the report using the personalized link from your email. If you no longer have it, please contact your engagement coordinator and ask for a fresh link.

); }