From 6cc24c1d93e2e0734027319e81ed8b46d7d38f60 Mon Sep 17 00:00:00 2001 From: mazuh Date: Mon, 4 Dec 2023 00:10:04 -0300 Subject: [PATCH] some restylings and workspace page --- src/App.tsx | 13 ++++-- src/components/template/ErrorPage.tsx | 2 +- src/components/ui/button.tsx | 6 +-- src/components/ui/typography.tsx | 26 +++++++++++- .../ProjectWorkspacePage.tsx | 42 +++++++++++++++++++ .../ProjectsManagementPage.tsx | 42 ++++++++++++++----- 6 files changed, 111 insertions(+), 20 deletions(-) create mode 100644 src/features/project-workspace/ProjectWorkspacePage.tsx diff --git a/src/App.tsx b/src/App.tsx index bfe5dce..c0c056f 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -4,6 +4,8 @@ import useClientSession from "./hooks/useClientSession"; import { ProjectsManagementPage } from "./features/projects-management/ProjectsManagementPage"; import { Button } from "./components/ui/button"; import { ErrorPageTemplate } from "./components/template/ErrorPage"; +import { Anchor } from "./components/ui/typography"; +import { ProjectWorkspacePage } from "./features/project-workspace/ProjectWorkspacePage"; export default function App() { const { isActive, doActiveThisSession, isOfflineModeSupported } = @@ -25,8 +27,9 @@ export default function App() { return ( - The app was opened in another tab or window. In offline mode you can - use it only one at a time. + The app was opened in another tab or window. +
+ In offline mode you can use it only one at a time.