File size: 2,486 Bytes
2abdda3
 
 
 
bfcbe27
2abdda3
 
 
 
bfcbe27
2abdda3
 
 
bfcbe27
 
 
 
 
 
 
 
2abdda3
 
 
bfcbe27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2abdda3
 
 
bfcbe27
 
 
 
 
 
 
 
 
 
 
 
2abdda3
 
 
bfcbe27
 
2abdda3
bfcbe27
2abdda3
bfcbe27
 
2abdda3
 
 
bfcbe27
 
 
 
2abdda3
 
 
 
bfcbe27
 
bbfaeab
bfcbe27
2abdda3
bfcbe27
 
7ba9dfb
 
 
bfcbe27
 
2abdda3
 
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>PINE-AI Agent MVP - Base</title>
    <style>
        :root {
            --vnpt-blue: #00a1e4;
            --vnpt-dark: #0072bc;
            --bg-body: #ffffff;  /* nền trắng */
            --chat-bot: #ffffff;
            --chat-user: #e3f2fd;
        }

        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: var(--bg-body);
        }

        /* --- Header --- */
        header {
            background-color: var(--vnpt-blue);
            color: white;
            padding: 40px 30px;       /* dày hơn */
            border-bottom-left-radius: 20px;   /* bo tròn cạnh dưới */
            border-bottom-right-radius: 20px;
            text-align: center;
        }

        header h1 {
            margin: 0;
            font-size: 36px;  /* lớn hơn */
            font-weight: bold;
        }

        header p.subtitle {
            margin: 8px 0 0 0;
            font-size: 14px;
            opacity: 0.8;
        }

        main {
            padding: 30px 20px;
            text-align: center;
        }

        /* --- Tabs --- */
        .tab-list {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .tab-list a {
            text-decoration: none;
            font-weight: bold;
            color: var(--vnpt-dark);
            background-color: var(--chat-bot);
            padding: 12px 24px;
            border-radius: 12px;       /* bo tròn button */
            border: 1px solid var(--vnpt-dark);
            transition: all 0.2s;
        }

        .tab-list a:hover {
            background-color: var(--vnpt-dark);
            color: white;
        }

        .tab-content {
            font-size: 18px;
            color: #333;
        }
    </style>
</head>
<body>
    <header>
        <h1>PINE-AI Agent MVP</h1>
        <p class="subtitle">Giải pháp bởi đội thi QuarterZip Team</p>
    </header>

    <main>
        <div class="tab-list">
            <a href="/call_desktop" target="_blank">Giao diện Call trên thiết bị desktop</a>
            <a href="/call_mobile" target="_blank">Giao diện Call trên thiết bị di động</a>
            <a href="/dashboard" target="_blank">Dashboard cho Quản lí Hệ thống AI Agents</a>
        </div>
    </main>
</body>
</html>