From 23f2f53c7a3d96231f5a529a03ba618955eeaef5 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 21 Apr 2026 13:41:25 +0000 Subject: [PATCH] Update src/app/admin/page.tsx --- src/app/admin/page.tsx | 152 ++++++++++++++++------------------------- 1 file changed, 57 insertions(+), 95 deletions(-) diff --git a/src/app/admin/page.tsx b/src/app/admin/page.tsx index 7a3dae7..8048cc4 100644 --- a/src/app/admin/page.tsx +++ b/src/app/admin/page.tsx @@ -1,103 +1,65 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import ReactLenis from "lenis/react"; -import FeatureBento from '@/components/sections/feature/FeatureBento'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; -import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; -import { CalendarDays, Clock } from "lucide-react"; +import { useState } from "react"; + +export default function AdminPage() { + const [isAuthenticated, setIsAuthenticated] = useState(false); + const [password, setPassword] = useState(""); + + if (!isAuthenticated) { + return ( +
+
+

Acesso Barbeiro

+ setPassword(e.target.value)} + /> + +
+
+ ); + } -export default function LandingPage() { return ( - - - - -
- -
- -
- -
- - -
+ +
+

Agenda Administrativa

+
+
+

Digital Calendar

+
+ {Array.from({ length: 30 }).map((_, i) => ( +
+ {i + 1} +
+ ))} +
+
+
+

Agenda Diária

+
+
+ 09:00 - Cliente A + Confirmado +
+
+ 10:30 - Cliente B + Pendente +
+
+
+
+
); } -- 2.49.1