📝 add store base layout

This commit is contained in:
yanyongyu
2021-12-29 13:33:36 +08:00
parent 0aea7f13e3
commit 39fd8b2dcd
10 changed files with 495 additions and 437 deletions

View File

@ -0,0 +1,5 @@
import React from "react";
export default function Adapter() {
return <></>;
}

View File

@ -0,0 +1,5 @@
import React from "react";
export default function Bot() {
return <></>;
}

View File

@ -0,0 +1,5 @@
import React from "react";
export default function Driver() {
return <></>;
}

View File

@ -0,0 +1,5 @@
import React from "react";
export default function Plugin() {
return <></>;
}

View File

@ -1,3 +1,7 @@
---
description: Changelog
---
# 更新日志
## v2.0.0b1

View File

@ -1 +0,0 @@
# 商店

View 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>