From af30d1bc2862cea309bac85f61ad2ea0b7bb757f Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sat, 20 Jul 2024 13:09:45 +0200 Subject: [PATCH] Create Statistic page --- .../Dashboard/pages/Statistic/Statistic.jsx | 18 ++++++++++++++++++ .../states/Dashboard/pages/Statistic/index.js | 1 + 2 files changed, 19 insertions(+) create mode 100644 dashboard/src/states/Dashboard/pages/Statistic/Statistic.jsx create mode 100644 dashboard/src/states/Dashboard/pages/Statistic/index.js diff --git a/dashboard/src/states/Dashboard/pages/Statistic/Statistic.jsx b/dashboard/src/states/Dashboard/pages/Statistic/Statistic.jsx new file mode 100644 index 0000000..f939f28 --- /dev/null +++ b/dashboard/src/states/Dashboard/pages/Statistic/Statistic.jsx @@ -0,0 +1,18 @@ +import {Stack, Typography} from "@mui/material"; +import Analytics from "@/common/assets/images/error/analytics.svg"; + +export const Statistic = () => { + return ( + + + Coming soon + Statistics are currently not available. + + We are working hard to bring you the best experience possible. Stay tuned! + + + Analytics + + ) +} \ No newline at end of file diff --git a/dashboard/src/states/Dashboard/pages/Statistic/index.js b/dashboard/src/states/Dashboard/pages/Statistic/index.js new file mode 100644 index 0000000..fa31846 --- /dev/null +++ b/dashboard/src/states/Dashboard/pages/Statistic/index.js @@ -0,0 +1 @@ +export {Statistic as default} from "./Statistic.jsx"; \ No newline at end of file