- Remap globals.css tokens to FCI brand palette (Eggplant #801d7f, Spring Pea #96bc33, Seed Grant #679038, Squash #c9ad2d, FCI gray #4b5657). Existing leaf-* / clay-* class names preserved. - Switch body font to Open Sans (FCI's free fallback for Museo Sans). Headings keep Fraunces. - Add contact identity (first name, last name, email) as readonly fields at the top of Stage 0. /api/data fetches via APIv4 Contact.get with email_primary.email join; values flow through FormDataPayload.contact and into the form's evalState so the readonly renderer displays them. Draft restore re-applies them so a stale local draft can't override. - amplify.yml: fetch Amplify Secrets from SSM Parameter Store when they don't arrive as build-shell env vars (the common failure mode behind "Refusing to run in production without CIVI_*"). Adds a length-only diagnostic echo and a hard-fail guard so a missing required var stops the build with a clear message instead of bundling empty strings and crashing the SSR Lambda at runtime.
53 lines
1.6 KiB
TypeScript
53 lines
1.6 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Fraunces, Open_Sans } from "next/font/google";
|
|
import "./globals.css";
|
|
|
|
/**
|
|
* Display face: Fraunces. A variable serif with strong optical interest —
|
|
* elegant in long descenders and bracketed serifs, reads like a field guide
|
|
* or almanac. We use the SOFT axis to round the inktraps slightly so it
|
|
* doesn't read as "old print" but as "warm modern editorial."
|
|
*/
|
|
const display = Fraunces({
|
|
variable: "--font-display",
|
|
subsets: ["latin"],
|
|
axes: ["SOFT", "opsz"],
|
|
display: "swap",
|
|
});
|
|
|
|
/**
|
|
* Body face: Open Sans. Per the FCI brand guidelines, Open Sans is the free
|
|
* substitute for the brand's primary type family (Museo Sans). It pairs
|
|
* cleanly with the Fraunces headings while keeping the form copy on-brand.
|
|
*/
|
|
const body = Open_Sans({
|
|
variable: "--font-body",
|
|
subsets: ["latin"],
|
|
weight: ["300", "400", "500", "600", "700"],
|
|
display: "swap",
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Co-op Check-in · Food Co-op Initiative",
|
|
description:
|
|
"Update your co-op's progress through the FCI organizing framework. A monthly check-in for food co-ops in development.",
|
|
robots: { index: false, follow: false }, // Form pages are tokenized; not for crawlers.
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html
|
|
lang="en"
|
|
className={`${display.variable} ${body.variable} h-full antialiased`}
|
|
>
|
|
<body className="min-h-full flex flex-col font-body bg-paper text-ink">
|
|
{children}
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|