From 9940f4f967e09ff4be779165939143cad15c61f0 Mon Sep 17 00:00:00 2001 From: Yago Santana Date: Fri, 28 Nov 2025 15:10:21 -0300 Subject: [PATCH] =?UTF-8?q?atualiza=C3=A7=C3=A3o?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- App.tsx | 4 +- components/Navbar.tsx | 66 ++++++++++++--- pages/Home.tsx | 57 +++++++------ pages/Login.tsx | 2 +- pages/Register.tsx | 186 +++++++++++++++++++++++++++++++++++++++++ public/HOME_14.png | Bin 0 -> 19385 bytes public/HOME_15.png | Bin 0 -> 19595 bytes public/HOME_16.png | Bin 0 -> 955266 bytes public/HOME_17 (1).png | Bin 0 -> 17668 bytes public/HOME_17.png | Bin 0 -> 17668 bytes 10 files changed, 277 insertions(+), 38 deletions(-) create mode 100644 pages/Register.tsx create mode 100644 public/HOME_14.png create mode 100644 public/HOME_15.png create mode 100644 public/HOME_16.png create mode 100644 public/HOME_17 (1).png create mode 100644 public/HOME_17.png diff --git a/App.tsx b/App.tsx index fe60ef4..2832a2a 100644 --- a/App.tsx +++ b/App.tsx @@ -3,6 +3,7 @@ import { Navbar } from "./components/Navbar"; import { Home } from "./pages/Home"; import { Dashboard } from "./pages/Dashboard"; import { Login } from "./pages/Login"; +import { Register } from "./pages/Register"; import { CalendarPage } from "./pages/Calendar"; import { TeamPage } from "./pages/Team"; import { FinancePage } from "./pages/Finance"; @@ -28,6 +29,7 @@ const AppContent: React.FC = () => { setCurrentPage(user ? "dashboard" : "login")} /> ); if (currentPage === "login") return user ? : ; + if (currentPage === "register") return user ? : ; if (!user) return ; @@ -70,7 +72,7 @@ const AppContent: React.FC = () => { {currentPage === "home" && (