Problem: Friendly not-found.

Solution#

html
<main class="grid min-h-screen place-items-center">
  <div class="text-center">
    <p class="text-7xl font-black text-slate-200">404</p>
    <h1 class="mt-2 text-xl font-bold">Page not found</h1>
    <a class="mt-6 inline-block rounded-lg bg-blue-600 px-4 py-2 text-white" href="/">Go home</a>
  </div>
</main>

Why this works#

Ghost numeral + single exit.

Variants#

  • Responsive: add screen prefixes to the core classes
  • Dark: pair each color utility with its dark: twin
  • Animated: add transition + a state variant for motion

cookbook/index|Cookbook index · utilities/index|Utilities reference · patterns/index|Layout patterns