diff --git a/frontend/src/assets/index.css b/frontend/src/assets/index.css index 1efc7ce2a1..cf0be7ff6f 100644 --- a/frontend/src/assets/index.css +++ b/frontend/src/assets/index.css @@ -13,3 +13,10 @@ .site-layout .site-layout-background { background: #fff; } */ +.instrument-card{ + border-radius: 4px; + background: #313131; + padding: 33px 23px; + max-width: 800px; + margin-top: 40px; +} \ No newline at end of file diff --git a/frontend/src/components/App.tsx b/frontend/src/components/App.tsx index 078fda147c..3a7bb88bfb 100644 --- a/frontend/src/components/App.tsx +++ b/frontend/src/components/App.tsx @@ -15,6 +15,7 @@ import { AlignLeftOutlined, AppstoreOutlined, SettingOutlined, + ApiOutlined } from "@ant-design/icons"; import DateTimeSelector from "Src/components/DateTimeSelector"; @@ -45,6 +46,10 @@ const Signup = React.lazy(() => import("Src/components/Signup")); const SettingsPage = React.lazy( () => import("Src/components/settings/settingsPage"), ); + +const IntstrumentationPage = React.lazy( + () => import("Src/components/add-instrumentation/instrumentationPage"), +); //PNOTE //React. lazy currently only supports default exports. If the module you want to import uses named exports, you can create an intermediate module that reexports it as the default. This ensures that tree shaking keeps working and that you don't pull in unused components. @@ -133,6 +138,11 @@ const App = () => { Settings +