In the documentation
Project Structure
├── public/
│
├── src
│ ├── assets/
│ ├── content/
│ │ ├── blog/
│ │ └── docs/
│ │ └── [collection]/
│ │
│ ├── lib/
│ │ ├── components/
│ │ ├── hooks/
│ │ └── utils
│ │
│ └── pages/
│
├── explainer.config.ts
├── package.json
└── tsconfig.json
Let’s break down the key directories and files in the Explainer project:
Public folder
This directory contains static assets that will be served directly without processing. Files like favicons, robots.txt, and other assets that don’t need transformation should be placed here.
Content folder
The main source directory containing all the application code.
The content
folder is divided into two parts:
docs
: Contains the documentation pagesblog
: Contains the blog articles
Docs Structure
The docs
directory contains all your documentation content organized by collections.
Note
Please refer to the dedicated section for more information.
Blog Structure
The blog
directory contains all your blog articles.
Note
Please refer to the dedicated section for more information.