diff --git a/app/login/page.tsx b/app/login/page.tsx index fe4e475..a25d893 100644 --- a/app/login/page.tsx +++ b/app/login/page.tsx @@ -15,7 +15,7 @@ export default function LoginPage() { // For demo purposes, using hardcoded credentials // In production, this should be replaced with proper authentication - if (username === 'admin' && password === 'admin123') { + if (username === 'duelfi' && password === 'yearofduelfi') { // Set authentication cookie Cookies.set('isAuthenticated', 'true', { path: '/' }); router.push('/dashboard');