-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
161 lines (141 loc) · 4.8 KB
/
index.html
File metadata and controls
161 lines (141 loc) · 4.8 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CronJob Monitor Dashboard</title>
<style>
:root {
--primary-color: #2c3e50;
--secondary-color: #3498db;
--bg-color: #f5f7fa;
--card-bg: #ffffff;
--text-color: #333;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background-color: var(--bg-color);
color: var(--text-color);
margin: 0;
padding: 0;
line-height: 1.6;
}
.container {
max-width: 1000px;
margin: 0 auto;
padding: 40px 20px;
}
header {
text-align: center;
margin-bottom: 60px;
}
h1 {
color: var(--primary-color);
font-size: 2.5rem;
margin-bottom: 10px;
}
.subtitle {
color: #7f8c8d;
font-size: 1.1rem;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
}
.card {
background: var(--card-bg);
border-radius: 12px;
padding: 30px;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
transition: transform 0.3s ease, box-shadow 0.3s ease;
text-decoration: none;
color: inherit;
display: flex;
flex-direction: column;
border-top: 5px solid var(--secondary-color);
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.card h2 {
margin-top: 0;
color: var(--primary-color);
display: flex;
align-items: center;
gap: 10px;
}
.card p {
color: #666;
flex-grow: 1;
}
.status {
margin-top: 20px;
font-size: 0.9em;
color: #95a5a6;
display: flex;
align-items: center;
gap: 5px;
}
.status::before {
content: "";
display: block;
width: 8px;
height: 8px;
border-radius: 50%;
background-color: #2ecc71;
}
.icon {
font-size: 1.5em;
}
footer {
text-align: center;
margin-top: 60px;
color: #95a5a6;
font-size: 0.9em;
}
footer a {
color: var(--secondary-color);
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<header>
<h1>🔍 CronJob Monitor</h1>
<p class="subtitle">Automated Data Scraping & Monitoring Dashboard</p>
</header>
<div class="grid">
<!-- RentMiro Module -->
<a href="modules/rentmiro/data.html" class="card">
<h2><span class="icon">🏢</span> RentMiro Monitor</h2>
<p>Monitors apartment availability, prices, and floor plans at Miro San Jose. Tracks changes and new listings.</p>
<div class="status">Active • Hourly Updates</div>
</a>
<!-- 99.com Module -->
<a href="modules/99/data.html" class="card">
<h2><span class="icon">🎮</span> 99.com Scraper</h2>
<p>Tracks game leaderboard data including rankings, servers, players, and flower counts.</p>
<div class="status">Active • Every 30 Mins</div>
</a>
<!-- Ziroom Module -->
<a href="modules/ziroom/data.html" class="card">
<h2><span class="icon">🏠</span> Ziroom Monitor</h2>
<p>Monitors Ziroom rental listings for specific keywords and locations.</p>
<div class="status">Active • Daily Updates</div>
</a>
<!-- Crypto Module -->
<a href="modules/crypto/data.html" class="card">
<h2><span class="icon">🪙</span> Crypto Airdrop Monitor</h2>
<p>Monitors cryptocurrency airdrops specifically targeting GitHub developers and technical contributors.</p>
<div class="status">Active • Hourly Updates</div>
</a>
</div>
<footer>
<p>Powered by GitHub Actions & Pages • <a href="https://github.com/openkikcoc/cronjob-ziroom">View Source</a></p>
</footer>
</div>
</body>
</html>