Implement dynamic page titles

This commit is contained in:
gpt-engineer-app[bot]
2025-10-29 12:42:18 +00:00
parent 1cdd1f59fb
commit 2d66a4f778
43 changed files with 131 additions and 4 deletions

View File

@@ -2,6 +2,7 @@ import { useEffect } from "react";
import { useNavigate } from "react-router-dom";
import { supabase } from "@/integrations/supabase/client";
import { authStorage } from "@/lib/authStorage";
import { useDocumentTitle } from '@/hooks/useDocumentTitle';
/**
* ForceLogout - Hidden endpoint for completely clearing auth session
@@ -9,6 +10,7 @@ import { authStorage } from "@/lib/authStorage";
* Not linked anywhere in the UI - for manual navigation only
*/
const ForceLogout = () => {
useDocumentTitle('Signing Out');
const navigate = useNavigate();
useEffect(() => {