diff options
| author | 2026-01-29 15:39:55 +0800 | |
|---|---|---|
| committer | 2026-01-29 15:39:55 +0800 | |
| commit | 2181e4a26c1581b4402312a7974f00cefb125752 (patch) | |
| tree | 8d38ce794f4b31ad1de9e61738eba125acc39ddd /packages/docs/content | |
| parent | 410c949b87424b4ac0df5e3f38930781c6eda147 (diff) | |
| parent | 5d630a24bed07dca20b6ddf55ffe4be36399ad0f (diff) | |
| download | DropOut-2181e4a26c1581b4402312a7974f00cefb125752.tar.gz DropOut-2181e4a26c1581b4402312a7974f00cefb125752.zip | |
Refactor Java runtime to async modular system with Adoptium support (#82)
Diffstat (limited to 'packages/docs/content')
| -rw-r--r-- | packages/docs/content/docs/index.mdx | 32 | ||||
| -rw-r--r-- | packages/docs/content/docs/meta.json | 3 | ||||
| -rw-r--r-- | packages/docs/content/docs/test.mdx | 24 |
3 files changed, 59 insertions, 0 deletions
diff --git a/packages/docs/content/docs/index.mdx b/packages/docs/content/docs/index.mdx new file mode 100644 index 0000000..6c2e629 --- /dev/null +++ b/packages/docs/content/docs/index.mdx @@ -0,0 +1,32 @@ +--- +title: Hello World +description: | + Your first `document` + You'll love it! +--- + +Hey there! Fumadocs is the docs framework that also works on React Router! + +## Heading + +Hello World + +<Cards> + <Card title="Learn more about React Router" href="https://reactrouter.com" /> + <Card title="Learn more about Fumadocs" href="https://fumadocs.dev" /> +</Cards> + +```ts +console.log('I love React!'); +``` + +### Heading + +#### Heading + +| Head | Description | +| ------------------------------- | ----------------------------------- | +| `hello` | Hello World | +| very **important** | Hey | +| _Surprisingly_ | Fumadocs | +| very long text that looks weird | hello world hello world hello world | diff --git a/packages/docs/content/docs/meta.json b/packages/docs/content/docs/meta.json new file mode 100644 index 0000000..bc00362 --- /dev/null +++ b/packages/docs/content/docs/meta.json @@ -0,0 +1,3 @@ +{ + "pages": ["index", "..."] +} diff --git a/packages/docs/content/docs/test.mdx b/packages/docs/content/docs/test.mdx new file mode 100644 index 0000000..cac4d26 --- /dev/null +++ b/packages/docs/content/docs/test.mdx @@ -0,0 +1,24 @@ +--- +title: Test +description: A document to test Fumadocs +--- + +Hey there! + +## Cards + +<Cards> + <Card title="Learn more about Next.js" href="https://nextjs.org/docs" /> + <Card title="Learn more about Fumadocs" href="https://fumadocs.dev" /> +</Cards> + +### CodeBlock + +```js +console.log('Hello World'); +``` + +#### List + +- Hello +- World |