PINE-AI-Amdocs / frontend /base.html
maitrang04's picture
Update frontend/base.html
bbfaeab verified
<!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>