From 3f87876a3c210a268132db2739bd578bbb28b6b3 Mon Sep 17 00:00:00 2001 From: hamster1963 <1410514192@qq.com> Date: Tue, 3 Dec 2024 14:20:17 +0800 Subject: [PATCH] fix: service block page --- src/App.tsx | 2 ++ src/components/CycleTransferStats.tsx | 22 +++++++++++------- src/components/ServiceTracker.tsx | 2 +- src/pages/ErrorPage.tsx | 32 +++++++++++++++++++++++++++ 4 files changed, 49 insertions(+), 9 deletions(-) create mode 100644 src/pages/ErrorPage.tsx diff --git a/src/App.tsx b/src/App.tsx index 2b3744b..ea1ed0b 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -5,6 +5,7 @@ import Footer from "./components/Footer"; import Server from "./pages/Server"; import ServerDetail from "./pages/ServerDetail"; import NotFound from "./pages/NotFound"; +import ErrorPage from "./pages/ErrorPage"; const App: React.FC = () => { return ( @@ -15,6 +16,7 @@ const App: React.FC = () => { } /> } /> + } /> } />