diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx
index 28d490a..6b9eef0 100644
--- a/frontend/src/App.tsx
+++ b/frontend/src/App.tsx
@@ -2,6 +2,8 @@ import { createRouter, RouterProvider } from "@tanstack/react-router";
import "./App.css";
import { routeTree } from "./routeTree.gen";
import { NotFound } from "./components/NotFound.tsx";
+import { CssVarsProvider } from "@mui/joy";
+import { theme } from "./theme.ts";
const router = createRouter({ routeTree, defaultNotFoundComponent: NotFound });
@@ -12,7 +14,11 @@ declare module "@tanstack/react-router" {
}
function App() {
- return
+
Stockhome
-