rc-plugin/server/components/home/bot-config.jsx

33 lines
1.5 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export function BotConfig() {
return (
<div className="card bg-base-100 shadow-xl">
<div className="card-body">
<h2 className="card-title text-lg font-bold">🔥快捷更新</h2>
<div className="grid grid-cols-1 gap-2">
<div className="flex justify-between items-center">
<div>
<h3 className="font-bold">检查更新</h3>
<p>当前最新版本为v0.0.0</p>
</div>
<button className="btn btn-warning">🚧施工</button>
</div>
<div className="flex justify-between items-center">
<div>
<h3 className="font-bold">非强制更新</h3>
<p>R 插件的非强制更新力度小</p>
</div>
<button className="btn btn-warning">🚧施工</button>
</div>
<div className="flex justify-between items-center">
<div>
<h3 className="font-bold">强制更新</h3>
<p>R 插件的强制更新力度大</p>
</div>
<button className="btn btn-warning">🚧施工</button>
</div>
</div>
</div>
</div>
)
}