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" && (