Docs
Introduction

Introduction

Welcome to the documentation.


This is the documentation for the Taxonomy site.

This is an example of a doc site built using ContentLayer and MDX.

This site is a work in progress. If you see dummy text on a page, it means I'm still working on it. You can follow updates on Twitter @shadcn.

components.json
{
  "style": "default",
  "rsc": true,
  "tailwind": {
    "config": "tailwind.config.js",
    "css": "app/globals.css",
    "baseColor": "slate",
    "cssVariables": false
  },
  "aliases": {
    "components": "@/components",
    "utils": "@/lib/utils"
  }
}
tailwind.config.js
module.exports = {
  theme: {
    extend: {
      colors: {
        warning: "hsl(var(--warning))",
        "warning-foreground": "hsl(var(--warning-foreground))",
      },
    },
  },
};