diff --git a/frontend/src/components/Layout.tsx b/frontend/src/components/Layout.tsx index 488f4e4..80259c6 100644 --- a/frontend/src/components/Layout.tsx +++ b/frontend/src/components/Layout.tsx @@ -77,7 +77,7 @@ export default function Layout() { // Get page title based on route const getPageTitle = () => { const route = location.pathname - if (route === '/') return 'Home Page' + if (route === '/') return '🏠 Home Page' if (route === '/scan') return '🗂️ Scan Photos' if (route === '/process') return '⚙️ Process Faces' if (route === '/search') return '🔍 Search Photos' diff --git a/frontend/src/pages/Login.tsx b/frontend/src/pages/Login.tsx index 15ea02b..3d50332 100644 --- a/frontend/src/pages/Login.tsx +++ b/frontend/src/pages/Login.tsx @@ -87,7 +87,6 @@ export default function Login() { onChange={(e) => setUsername(e.target.value)} required className="w-full px-3 py-2 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-blue-500 focus:border-blue-500" - placeholder="admin" /> @@ -106,7 +105,6 @@ export default function Login() { onChange={(e) => setPassword(e.target.value)} required className="w-full px-3 py-2 pr-10 border border-gray-300 rounded-md shadow-sm focus:outline-none focus:ring-blue-500 focus:border-blue-500" - placeholder="admin" />