Rocket can render custom elements from package component maps. The atlas docs layout already registers the Web Awesome elements used on this Page, so the Markdown can use those tags directly.
atlasDocComponents.
Badges are useful for compact metadata in documentation:
Use details for supporting information that should not interrupt the main reading path:
components map. Markdown Pages that use the layout
should re-export that map, or compose it with additional Page-owned Registered Components.
Cards work well for repeated summaries or compact examples:
Confirm the page builds, check the generated route, and verify any hydrated components in the browser.
Example content rendered inside a Web Awesome card.Use avatars for people, teams, or generated initials:
If a Page uses a custom layout instead of atlasDocLayout, import and spread the package component
map yourself:
```js server
import { webAwesomeComponents } from '@rocket/js/components/web-awesome.js';
export const components = {
...webAwesomeComponents,
};
```
Add Page-owned components to the same map when the Page contains both package components and local Registered Components.
Continue with Components for the full Registered Component reference, or Component Loading for loading strategy decisions.