-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
103 lines (99 loc) · 4.16 KB
/
index.html
File metadata and controls
103 lines (99 loc) · 4.16 KB
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
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>🏦 TIMO Banking Platform</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.0/font/bootstrap-icons.css" rel="stylesheet">
<style>
.hero-section {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 100px 0;
}
.feature-card {
transition: transform 0.3s;
border: none;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
height: 100%;
}
.feature-card:hover { transform: translateY(-5px); }
</style>
</head>
<body>
<!-- Hero Section -->
<section class="hero-section text-center">
<div class="container">
<h1 class="display-3 fw-bold mb-4">🏦 TIMO Banking Platform</h1>
<p class="lead mb-4">Professional Banking Data Quality Platform với real-time monitoring, automated workflows, và compliance-ready architecture</p>
<div class="mb-4">
<span class="badge bg-primary me-2">🐳 Docker Ready</span>
<span class="badge bg-success me-2">⚡ FastAPI 0.104.1</span>
<span class="badge bg-info me-2">⚛️ React 18.2.0</span>
<span class="badge bg-warning text-dark me-2">🔄 Airflow 2.7.3</span>
</div>
<a href="https://github.com/Ne4nf/TimoBank" class="btn btn-light btn-lg me-3">
<i class="bi bi-github"></i> View on GitHub
</a>
</div>
</section>
<!-- Quick Deploy -->
<section class="py-5">
<div class="container">
<h2 class="text-center mb-5">🚀 Quick Deploy</h2>
<div class="row">
<div class="col-md-8 mx-auto">
<div class="bg-dark text-light p-4 rounded">
<pre><code>git clone https://github.com/Ne4nf/TimoBank.git
cd TimoBank
docker-compose up -d</code></pre>
</div>
</div>
</div>
</div>
</section>
<!-- Features -->
<section class="py-5 bg-light">
<div class="container">
<h2 class="text-center mb-5">🎯 Key Features</h2>
<div class="row g-4">
<div class="col-md-4">
<div class="card feature-card">
<div class="card-body text-center">
<i class="bi bi-shield-check text-primary mb-3" style="font-size: 3rem;"></i>
<h5>Data Quality Management</h5>
<p>15+ automated validation checks</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card feature-card">
<div class="card-body text-center">
<i class="bi bi-eye text-danger mb-3" style="font-size: 3rem;"></i>
<h5>Fraud Detection</h5>
<p>Real-time monitoring system</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card feature-card">
<div class="card-body text-center">
<i class="bi bi-graph-up text-success mb-3" style="font-size: 3rem;"></i>
<h5>Real-time Dashboard</h5>
<p>Live metrics and KPIs</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="py-4 bg-dark text-white text-center">
<div class="container">
<p class="mb-0">Built with ❤️ for Vietnamese Banking Industry | © 2025 TIMO Banking Platform</p>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>