# Zuplo Errors

import { errors } from "../src/errors.ts";

Zuplo provides detailed error messages to help diagnose and fix problems. Select
an error below for causes and troubleshooting steps.

<ul>
  {errors.map(({ title, id }) => (
    <li key={id}>
      <a href={`./errors/${id}`}>{title}</a>
    </li>
  ))}
</ul>
