diff --git a/src/app/favicon.ico b/src/app/favicon.ico deleted file mode 100755 index 718d6fe..0000000 Binary files a/src/app/favicon.ico and /dev/null differ diff --git a/src/app/favicon.png b/src/app/favicon.png new file mode 100644 index 0000000..8b32994 Binary files /dev/null and b/src/app/favicon.png differ diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 4c79aac..d6ec17d 100755 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -17,9 +17,12 @@ const inter = Inter({ }); export const metadata: Metadata = { - title: "EnFlow — Plataforma de Atención Inteligente para Cirugía Plástica", + title: "Cirux — Plataforma de Atención Inteligente para Cirugía Plástica", description: - "EnFlow automatiza la atención al paciente con IA omnicanal para consultorios y clínicas de cirugía plástica.", + "Cirux automatiza la atención al paciente con IA omnicanal para consultorios y clínicas de cirugía plástica.", + icons: { + icon: "/favicon.png", + }, }; /** diff --git a/src/app/login/page.tsx b/src/app/login/page.tsx index 08330d4..3fa81b3 100755 --- a/src/app/login/page.tsx +++ b/src/app/login/page.tsx @@ -6,7 +6,8 @@ import { useForm } from "react-hook-form"; import { zodResolver } from "@hookform/resolvers/zod"; import { z } from "zod"; import { toast } from "sonner"; -import { Zap, Eye, EyeOff, Loader2 } from "lucide-react"; +import Image from "next/image"; +import { Eye, EyeOff, Loader2 } from "lucide-react"; import { createClient } from "@/utils/supabase/client"; import { Button } from "@/components/ui/button"; import { Input } from "@/components/ui/input"; @@ -27,7 +28,7 @@ const loginSchema = z.object({ type LoginFormValues = z.infer; /** - * Página de inicio de sesión de EnFlow. + * Página de inicio de sesión de Cirux. * Autentica con Supabase Auth y redirige al dashboard. */ export default function LoginPage() { @@ -54,7 +55,7 @@ export default function LoginPage() { return; } - toast.success("¡Bienvenido a EnFlow!"); + toast.success("¡Bienvenido a Cirux!"); router.push("/dashboard/calendar"); router.refresh(); }; @@ -66,13 +67,15 @@ export default function LoginPage() {
{/* Logo */} -
-
- -
- - EnFlow - +
+ Cirux
diff --git a/src/app/logo-cirux.webp b/src/app/logo-cirux.webp new file mode 100644 index 0000000..e0c480f Binary files /dev/null and b/src/app/logo-cirux.webp differ diff --git a/src/app/page.tsx b/src/app/page.tsx index f9786f1..7af6dbd 100755 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -2,5 +2,5 @@ import { redirect } from "next/navigation"; /** Redirige la raíz al calendario del dashboard. */ export default function Home() { - redirect("/dashboard/calendar"); + redirect("/dashboard"); } diff --git a/src/components/layout/Sidebar.tsx b/src/components/layout/Sidebar.tsx index 6617a73..f65cef1 100755 --- a/src/components/layout/Sidebar.tsx +++ b/src/components/layout/Sidebar.tsx @@ -3,6 +3,7 @@ import { useMemo, useCallback } from "react"; import Link from "next/link"; import { usePathname, useRouter } from "next/navigation"; +import Image from "next/image"; import { CalendarDays, Users, @@ -13,7 +14,6 @@ import { LogOut, Menu, X, - Zap, } from "lucide-react"; import { cn } from "@/lib/utils"; import { useUIStore } from "@/lib/stores/uiStore"; @@ -75,13 +75,15 @@ export function Sidebar() { {/* Header */}
{sidebarOpen && ( - -
- -
- - EnFlow - + + Cirux )}