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

@@ -1,7 +1,9 @@
import { useLocation } from "react-router-dom";
import { useEffect } from "react";
import { useDocumentTitle } from '@/hooks/useDocumentTitle';
const NotFound = () => {
useDocumentTitle('404 - Page Not Found');
const location = useLocation();
useEffect(() => {