- Introduced new content collections for documentation and metadata using Fumadocs. - Created initial documentation files and layout for the docs section. - Updated routing and middleware to support the new docs structure. - Enhanced localization support by adding new entries for documentation in English and Chinese. - Implemented a new API route for search functionality within the documentation.
18 lines
287 B
Plaintext
18 lines
287 B
Plaintext
---
|
|
title: Components
|
|
description: Components
|
|
---
|
|
|
|
## Code Block
|
|
|
|
```js
|
|
console.log('Hello World');
|
|
```
|
|
|
|
## Cards
|
|
|
|
<Cards>
|
|
<Card title="Learn more about Next.js" href="https://nextjs.org/docs" />
|
|
<Card title="Learn more about Fumadocs" href="https://fumadocs.vercel.app" />
|
|
</Cards>
|