MoCC is a "museum" of the web’s most misleading charts. Each exhibit comments on what went wrong and cites the original source.
- Live site: https://museum-chart-crimes.vercel.app/
Want to contribute? Feel free to open a PR with your favorite chart crime.
- Place your assets under
public/assets/blog/<slug>/(the chart image is usuallycover.jpeg). - Create
_posts/<slug>.mdusing the front matter template below. - Write the body in Markdown. Include links for sources—MoCC underlines them automatically. Set each
authorentry’snameto the original publisher and add aurlwhen you have it. - Run
npm run buildto confirm the site still generates statically.
---
title: "Graph Title"
excerpt: "One-line summary shown on the homepage."
coverImage: "/assets/blog/<slug>/cover.jpeg"
date: "2025-10-10"
author:
- name: Publisher of the original chart
url: "https://example.com/original-source"
curator:
- name: Your Name
url: "https://example.com/profile"
---Notes:
coverImagerenders inside the exhibit and doubles as the social share image.- Use the original chart title for
titlewhenever possible. - Include a
urlfor eachauthorandcuratorentry when you can. authorandcuratorshare the same list format, so mix one or many entries as needed.- Markdown supports tables, code fences, and inline HTML where needed.
npm run dev– start the local development server.npm run build– generate the production build.npm run start– serve the production build locally.