A static site presenting the Filecoin Onchain Cloud (FOC) Requests for Startups program. Displays a program overview, submission guidelines, and a set of individual RFS briefs — each sourced from its own markdown file.
Built with Next.js 16 (App Router), TypeScript, and Tailwind CSS v4.
content/rfs/ # Markdown files with YAML frontmatter (rfs-1.md …)
src/app/page.tsx # Homepage — overview, guidelines, RFS card grid
src/app/rfs/[slug]/ # Individual RFS detail pages (statically generated)
src/lib/rfs.ts # Reads and parses markdown content at build time
npm install
npm run devOpens at http://localhost:3000. Uses Turbopack for fast refresh.
npm run buildAll pages are statically generated at build time. No runtime server required.
npm run lint- Create
content/rfs/rfs-N.mdwith frontmatter matching the existing schema (number,title,slug,description). - The homepage index and static routes update automatically on next build.