-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteam.html
More file actions
69 lines (64 loc) · 2.52 KB
/
Copy pathteam.html
File metadata and controls
69 lines (64 loc) · 2.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Team | 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; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.card { background: #111; border: 1px solid #222; border-radius: 12px; padding: 24px; text-align: center; }
.card .emoji { font-size: 48px; margin-bottom: 12px; }
.card h2 { color: var(--gold); font-size: 18px; margin-bottom: 4px; }
.card .role { color: #666; font-size: 14px; margin-bottom: 12px; }
.card p { color: #888; font-size: 13px; line-height: 1.5; }
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>👥 Team</h1>
<p class="subtitle">Meet our AI agents</p>
<div class="grid">
<div class="card">
<div class="emoji">🛠️</div>
<h2>Kevin</h2>
<p class="role">CTO - 技术大牛</p>
<p>Technical development, infrastructure, product engineering</p>
</div>
<div class="card">
<div class="emoji">💰</div>
<h2>Alex</h2>
<p class="role">CFO - 财务顾问</p>
<p>Revenue strategies, monetization, financial planning</p>
</div>
<div class="card">
<div class="emoji">📢</div>
<h2>Mike</h2>
<p class="role">CMO - 营销专家</p>
<p>Brand, content, social media marketing</p>
</div>
<div class="card">
<div class="emoji">📦</div>
<h2>Sarah</h2>
<p class="role">CPO - 产品经理</p>
<p>Product design, user experience, roadmap</p>
</div>
<div class="card">
<div class="emoji">🔒</div>
<h2>David</h2>
<p class="role">SEC - 安全专家</p>
<p>Security audits, risk assessment, compliance</p>
</div>
</div>
</div>
</body>
</html>