feat: fix the problem in the Operator Market frontend pages

This commit is contained in:
root
2025-12-29 11:38:47 +08:00
parent 29e4a333a9
commit 844add27ea
213 changed files with 45547 additions and 45537 deletions

View File

@@ -1,28 +1,28 @@
import { Button } from "antd";
const DevelopmentInProgress = ({ showHome = true, showTime = "" }) => {
return (
<div className="mt-40 flex flex-col items-center justify-center">
<div className="hero-icon">🚧</div>
<h1 className="text-2xl font-bold"></h1>
{showTime && (
<p className="mt-4">
<b>{showTime}</b>
</p>
)}
{showHome && (
<Button
type="primary"
className="mt-6"
onClick={() => {
window.location.href = "/";
}}
>
</Button>
)}
</div>
);
};
export default DevelopmentInProgress;
import { Button } from "antd";
const DevelopmentInProgress = ({ showHome = true, showTime = "" }) => {
return (
<div className="mt-40 flex flex-col items-center justify-center">
<div className="hero-icon">🚧</div>
<h1 className="text-2xl font-bold"></h1>
{showTime && (
<p className="mt-4">
<b>{showTime}</b>
</p>
)}
{showHome && (
<Button
type="primary"
className="mt-6"
onClick={() => {
window.location.href = "/";
}}
>
</Button>
)}
</div>
);
};
export default DevelopmentInProgress;