File size: 1,638 Bytes
7644eac
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Page Not Found | AI Learning Path Generator</title>
    <!-- Tailwind CSS via CDN -->
    <script src="https://cdn.tailwindcss.com"></script>
    <style>
        .gradient-bg {
            background: linear-gradient(90deg, #4f46e5 0%, #7c3aed 100%);
        }
    </style>
</head>
<body class="bg-gray-50 min-h-screen flex flex-col">
    <header class="gradient-bg text-white py-8 px-4 shadow-md">
        <div class="container mx-auto">
            <h1 class="text-3xl font-bold mb-2">AI Learning Path Generator 🎓</h1>
        </div>
    </header>

    <main class="container mx-auto px-4 py-12 flex-grow flex items-center justify-center">
        <div class="bg-white rounded-xl shadow-lg p-8 max-w-md w-full text-center">
            <div class="text-6xl mb-4">404</div>
            <h2 class="text-2xl font-bold text-gray-800 mb-4">Page Not Found</h2>
            <p class="text-gray-600 mb-6">The page you're looking for doesn't exist or has been moved.</p>
            <a href="/" class="inline-block px-4 py-2 bg-indigo-600 text-white rounded-lg hover:bg-indigo-700 transition">
                Return to Home
            </a>
        </div>
    </main>
    
    <footer class="bg-gray-800 text-white py-8 px-4">
        <div class="container mx-auto">
            <p class="text-center">&copy; 2025 AI Learning Path Generator. All rights reserved.</p>
        </div>
    </footer>
    <script src="{{ url_for('static', filename='js/theme.js') }}"></script>
</body>
</html>