File size: 2,000 Bytes
1dfcad5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>{{ title | default("Predictive Analytics Tool") }}</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
    <script src="{{ url_for('static', filename='index.js') }}" defer></script>
</head>
<body class="bg-gray-100 text-gray-900">
    <header class="bg-white shadow">
        <div class="container mx-auto px-4 py-6 flex justify-between items-center">
            <div class="text-2xl font-bold">Predictive Analytics Tool</div>
            <nav>
                <ul class="flex space-x-4">
                    <li><a href="/" class="hover:text-blue-500 transition">Home</a></li>
                    <li><a href="/forecast/sales" class="hover:text-blue-500 transition">Sales Prediction</a></li>
                    <li><a href="/campaign" class="hover:text-blue-500 transition">Campaign Analysis</a></li>
                    <li><a href="/inventory" class="hover:text-blue-500 transition">Inventory Optimization</a></li>
                    <li><a href="/pricing" class="hover:text-blue-500 transition">Pricing Intelligence</a></li>
                    <li><a href="/underperformance" class="hover:text-blue-500 transition">Underperformance</a></li>
                    <li><a href="/predict/machine_failure" class="hover:text-blue-500 transition">Machine Failure</a></li>
                    <li><a href="/predict/supply_failure" class="hover:text-blue-500 transition">Supply Failure</a></li>
                </ul>
            </nav>
        </div>
    </header>
    <main>
        {% block content %}{% endblock %}
    </main>
    <footer class="bg-white border-t">
        <div class="container mx-auto px-4 py-4 text-center text-sm">
            &copy; 2025 Predictive Analytics Tool. All rights reserved.
        </div>
    </footer>
</body>
</html>