-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathradar.html
More file actions
49 lines (46 loc) · 2.09 KB
/
Copy pathradar.html
File metadata and controls
49 lines (46 loc) · 2.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pain Radar | THEMATHINK</title>
<style>
:root { --bg: #0a0a0f; --text: #e5e7eb; --gold: #fbbf24; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--bg); color: var(--text); font-family: -apple-system, sans-serif; min-height: 100vh; padding: 40px 20px; }
.container { max-width: 800px; margin: 0 auto; }
h1 { color: var(--gold); font-size: 42px; text-align: center; margin-bottom: 12px; }
.subtitle { color: #666; text-align: center; margin-bottom: 40px; }
.card { background: #111; border: 1px solid #222; border-radius: 12px; padding: 24px; margin-bottom: 16px; }
.card h3 { color: var(--gold); font-size: 16px; margin-bottom: 8px; }
.card p { color: #888; font-size: 14px; }
.card .source { display: inline-block; background: #222; color: var(--gold); padding: 2px 8px; border-radius: 4px; font-size: 12px; margin-right: 8px; }
.card .time { color: #666; font-size: 12px; }
a { color: var(--gold); }
.back { position: fixed; top: 20px; left: 20px; }
.back a { color: var(--gold); text-decoration: none; }
</style>
</head>
<body>
<div class="back"><a href="/">← Home</a></div>
<div class="container">
<h1>📊 Pain Radar</h1>
<p class="subtitle">Real-time pain point discovery</p>
<div class="card">
<h3><span class="source">HN</span>Best RAG for production</h3>
<p>Discussion about retrieval augmented generation in production environments</p>
<span class="time">2 min ago</span>
</div>
<div class="card">
<h3><span class="source">HN</span>How to scale context beyond 128K</h3>
<p>Techniques for extending context windows in LLMs</p>
<span class="time">5 min ago</span>
</div>
<div class="card">
<h3><span class="source">Reddit</span>AI tools for small business</h3>
<p>What AI tools are you using for your small business?</p>
<span class="time">12 min ago</span>
</div>
</div>
</body>
</html>