mirror of
https://github.com/nonebot/nonebot2.git
synced 2025-07-28 16:51:26 +00:00
📝 add store base layout
This commit is contained in:
5
website/src/components/Adapter.tsx
Normal file
5
website/src/components/Adapter.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
import React from "react";
|
||||
|
||||
export default function Adapter() {
|
||||
return <></>;
|
||||
}
|
5
website/src/components/Bot.tsx
Normal file
5
website/src/components/Bot.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
import React from "react";
|
||||
|
||||
export default function Bot() {
|
||||
return <></>;
|
||||
}
|
5
website/src/components/Driver.tsx
Normal file
5
website/src/components/Driver.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
import React from "react";
|
||||
|
||||
export default function Driver() {
|
||||
return <></>;
|
||||
}
|
5
website/src/components/Plugin.tsx
Normal file
5
website/src/components/Plugin.tsx
Normal file
@ -0,0 +1,5 @@
|
||||
import React from "react";
|
||||
|
||||
export default function Plugin() {
|
||||
return <></>;
|
||||
}
|
@ -1,3 +1,7 @@
|
||||
---
|
||||
description: Changelog
|
||||
---
|
||||
|
||||
# 更新日志
|
||||
|
||||
## v2.0.0b1
|
||||
|
@ -1 +0,0 @@
|
||||
# 商店
|
31
website/src/pages/store.mdx
Normal file
31
website/src/pages/store.mdx
Normal file
@ -0,0 +1,31 @@
|
||||
---
|
||||
description: NoneBot Store
|
||||
hide_table_of_contents: true
|
||||
---
|
||||
|
||||
import Tabs from "@theme/Tabs";
|
||||
import TabItem from "@theme/TabItem";
|
||||
|
||||
import Driver from "../components/Driver";
|
||||
import Adapter from "../components/Adapter";
|
||||
import Plugin from "../components/Plugin";
|
||||
import Bot from "../components/Bot";
|
||||
|
||||
# 商店
|
||||
|
||||
<div className="w-full border rounded shadow">
|
||||
<Tabs defaultValue="plugin" className="justify-center font-light text-sm">
|
||||
<TabItem value="driver" label="驱动器">
|
||||
<Driver />
|
||||
</TabItem>
|
||||
<TabItem value="adapter" label="适配器">
|
||||
<Adapter />
|
||||
</TabItem>
|
||||
<TabItem value="plugin" label="插件">
|
||||
<Plugin />
|
||||
</TabItem>
|
||||
<TabItem value="bot" label="机器人">
|
||||
<Bot />
|
||||
</TabItem>
|
||||
</Tabs>
|
||||
</div>
|
Reference in New Issue
Block a user