From 4e686caa3f33868719420f5a063c59a5cbafe643 Mon Sep 17 00:00:00 2001 From: Yago Santana Date: Tue, 25 Nov 2025 13:56:11 -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 | 52 ++-- README.md | 2 +- components/Button.tsx | 23 +- components/EventForm.tsx | 289 +++++++++++--------- components/Navbar.tsx | 109 ++++---- index.html | 18 +- metadata.json | 2 +- package-lock.json | 7 +- package.json | 4 +- pages/Albums.tsx | 190 +++++++++++++ pages/Calendar.tsx | 357 +++++++++++++++++++++++++ pages/Finance.tsx | 371 ++++++++++++++++++++++++++ pages/Home.tsx | 86 +++--- pages/Settings.tsx | 482 +++++++++++++++++++++++++++++++++ pages/Team.tsx | 562 +++++++++++++++++++++++++++++++++++++++ public/HOME_01.jpg | Bin 0 -> 727899 bytes public/banner2.jpg | Bin 0 -> 521968 bytes public/logo.png | Bin 0 -> 5897 bytes 18 files changed, 2261 insertions(+), 293 deletions(-) create mode 100644 pages/Albums.tsx create mode 100644 pages/Calendar.tsx create mode 100644 pages/Finance.tsx create mode 100644 pages/Settings.tsx create mode 100644 pages/Team.tsx create mode 100644 public/HOME_01.jpg create mode 100644 public/banner2.jpg create mode 100644 public/logo.png diff --git a/App.tsx b/App.tsx index 112ca9d..fe60ef4 100644 --- a/App.tsx +++ b/App.tsx @@ -3,6 +3,11 @@ import { Navbar } from "./components/Navbar"; import { Home } from "./pages/Home"; import { Dashboard } from "./pages/Dashboard"; import { Login } from "./pages/Login"; +import { CalendarPage } from "./pages/Calendar"; +import { TeamPage } from "./pages/Team"; +import { FinancePage } from "./pages/Finance"; +import { SettingsPage } from "./pages/Settings"; +import { AlbumsPage } from "./pages/Albums"; import { AuthProvider, useAuth } from "./contexts/AuthContext"; import { DataProvider } from "./contexts/DataContext"; import { Construction } from "lucide-react"; @@ -37,39 +42,20 @@ const AppContent: React.FC = () => { case "uploads": return ; - case "team": - case "finance": - case "settings": - case "albums": case "calendar": - return ( -
-
-
- -
-

- {currentPage === "team" - ? "Equipe & Fotógrafos" - : currentPage === "finance" - ? "Financeiro" - : currentPage === "calendar" - ? "Agenda" - : currentPage} -

-

- Esta funcionalidade está em desenvolvimento e estará disponível - em breve no seu painel. -

- -
-
- ); + return ; + + case "team": + return ; + + case "finance": + return ; + + case "settings": + return ; + + case "albums": + return ; default: return ; @@ -84,7 +70,7 @@ const AppContent: React.FC = () => { {currentPage === "home" && (