diff --git a/src/App.tsx b/src/App.tsx
index 29ab83b..a353561 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -13,6 +13,7 @@ const CreateTeamPage = lazy(() => import("./pages/CreateTeamPage.tsx"))
const TeamPanelPage = lazy(() => import("./pages/TeamPanel.tsx"))
const NewTacticPage = lazy(() => import("./pages/NewTacticPage.tsx"))
const Editor = lazy(() => import("./pages/Editor.tsx"))
+const Settings = lazy(() => import("./pages/Settings.tsx"))
export default function App() {
function suspense(node: ReactNode) {
@@ -42,6 +43,11 @@ export default function App() {
element={suspense()}
/>
+ )}
+ />
+
)}
diff --git a/src/pages/Settings.tsx b/src/pages/Settings.tsx
new file mode 100644
index 0000000..c6dcc7f
--- /dev/null
+++ b/src/pages/Settings.tsx
@@ -0,0 +1,5 @@
+
+
+export default function Settings() {
+ return Hey !
+}
\ No newline at end of file