新增访客聊天Widget组件、Admin端布局框架及路由
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
const AdminDashboard = () => (
|
||||
<div className="h-full flex items-center justify-center text-neutral-400 text-center">
|
||||
<div><div className="text-lg mb-1">运营概览</div><div className="text-sm">开发中...</div></div>
|
||||
</div>
|
||||
)
|
||||
export default AdminDashboard
|
||||
@@ -0,0 +1,6 @@
|
||||
const Ops = () => (
|
||||
<div className="h-full flex items-center justify-center text-neutral-400 text-center">
|
||||
<div><div className="text-lg mb-1">系统运维</div><div className="text-sm">开发中...</div></div>
|
||||
</div>
|
||||
)
|
||||
export default Ops
|
||||
@@ -0,0 +1,6 @@
|
||||
const Plans = () => (
|
||||
<div className="h-full flex items-center justify-center text-neutral-400 text-center">
|
||||
<div><div className="text-lg mb-1">套餐管理</div><div className="text-sm">开发中...</div></div>
|
||||
</div>
|
||||
)
|
||||
export default Plans
|
||||
@@ -0,0 +1,6 @@
|
||||
const Tenants = () => (
|
||||
<div className="h-full flex items-center justify-center text-neutral-400 text-center">
|
||||
<div><div className="text-lg mb-1">租户管理</div><div className="text-sm">开发中...</div></div>
|
||||
</div>
|
||||
)
|
||||
export default Tenants
|
||||
Reference in New Issue
Block a user