diff --git a/public/background-images/eye-background.png b/public/background-images/eye-background.png new file mode 100644 index 00000000..f0ac163d Binary files /dev/null and b/public/background-images/eye-background.png differ diff --git a/src/App.jsx b/src/App.jsx index 809c2d05..b7f737d1 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,15 +1,16 @@ import { TamaguiProvider } from "tamagui"; - import config from "./tamagui.config.js"; import { createBrowserRouter, RouterProvider } from "react-router-dom"; +import DeviceHealthCheck from "./pages/DeviceHealthCheck/index.jsx"; + import "./App.css"; const router = createBrowserRouter([ { path: "/", - element:
Hello world!
, + element: , }, ]); diff --git a/src/pages/DeviceHealthCheck/index.jsx b/src/pages/DeviceHealthCheck/index.jsx new file mode 100644 index 00000000..928e0c19 --- /dev/null +++ b/src/pages/DeviceHealthCheck/index.jsx @@ -0,0 +1,9 @@ +const DeviceHealthCheck = () => { + return ( +
+ eye-background +
+ ); +}; + +export default DeviceHealthCheck;