-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
237 lines (206 loc) · 5.71 KB
/
Copy pathindex.html
File metadata and controls
237 lines (206 loc) · 5.71 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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sirui Bi</title>
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--text: #222;
--muted: #666;
--accent: #1a73e8;
--border: #e8e8e8;
--bg: #fff;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.65;
font-size: 16px;
}
a {
color: var(--accent);
text-decoration: none;
}
a:hover { text-decoration: underline; }
.wrapper {
max-width: 780px;
margin: 0 auto;
padding: 64px 28px 80px;
}
/* ── Header ── */
.header {
display: flex;
gap: 48px;
align-items: flex-start;
margin-bottom: 56px;
}
.photo {
width: 148px;
height: 148px;
border-radius: 50%;
object-fit: cover;
flex-shrink: 0;
border: 1px solid var(--border);
}
.info { flex: 1; }
.info h1 {
font-size: 2rem;
font-weight: 700;
letter-spacing: -0.5px;
margin-bottom: 12px;
}
.bio {
color: var(--muted);
font-size: 1rem;
max-width: 480px;
margin-bottom: 18px;
}
.links {
font-size: 0.95rem;
display: flex;
flex-wrap: wrap;
gap: 6px 0;
}
.links a {
display: inline-flex;
align-items: center;
gap: 5px;
}
.links .sep {
color: #ccc;
margin: 0 8px;
user-select: none;
}
/* ── Section heading ── */
.section-title {
font-size: 1rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--muted);
margin-bottom: 24px;
}
/* ── Projects ── */
.projects { display: flex; flex-direction: column; }
.project {
display: flex;
gap: 28px;
padding: 24px 0;
border-top: 1px solid var(--border);
}
.project:last-child { border-bottom: 1px solid var(--border); }
.project-thumb {
width: 80px;
height: 80px;
border-radius: 12px;
object-fit: cover;
flex-shrink: 0;
background: #f4f4f4;
border: 1px solid var(--border);
display: flex;
align-items: center;
justify-content: center;
font-size: 28px;
}
.project-body { flex: 1; }
.project-body h3 {
font-size: 1.05rem;
font-weight: 600;
margin-bottom: 6px;
}
.project-body p {
font-size: 0.93rem;
color: var(--muted);
line-height: 1.6;
}
.project-url {
display: inline-block;
margin-top: 8px;
font-size: 0.88rem;
color: var(--accent);
}
/* ── Responsive ── */
@media (max-width: 560px) {
.header {
flex-direction: column;
align-items: center;
text-align: center;
gap: 24px;
margin-bottom: 40px;
}
.bio { margin-left: auto; margin-right: auto; }
.links {
justify-content: center;
}
.photo { width: 120px; height: 120px; }
.project-thumb { display: none; }
}
</style>
</head>
<body>
<div class="wrapper">
<!-- Header -->
<div class="header">
<img
src="https://github.com/SiRuiB.png"
alt="Sirui Bi"
class="photo"
>
<div class="info">
<h1>Sirui Bi</h1>
<p class="bio">
I am passionate about innovation. Let's connect if you are interested in
International Trade, Finance, Economics, Building something cool,
Music, Guitar, Songs, Body Building, Fashion, Shopping …
</p>
<div class="links">
<a href="https://www.linkedin.com/in/sirui-b-10b8451a1/" target="_blank" rel="noopener">
LinkedIn
</a>
<span class="sep">/</span>
<a href="https://x.com/Sirui_Bi" target="_blank" rel="noopener">
X (Twitter)
</a>
<span class="sep">/</span>
<a href="https://github.com/SiRuiB" target="_blank" rel="noopener">
GitHub
</a>
<span class="sep">/</span>
<a href="mailto:siruiii252@gmail.com">
Email
</a>
</div>
</div>
</div>
<!-- Projects -->
<p class="section-title">Projects</p>
<div class="projects">
<div class="project">
<div class="project-thumb" aria-hidden="true">📈</div>
<div class="project-body">
<h3><a href="https://llmquant.com" target="_blank" rel="noopener">LLMQuant</a></h3>
<p>
An AI community and data platform for quantitative finance.
Delivers market data, research, and macro context through a unified API — structured natively for LLM agents.
</p>
<a class="project-url" href="https://llmquant.com" target="_blank" rel="noopener">llmquant.com →</a>
</div>
</div>
<div class="project">
<div class="project-thumb" aria-hidden="true">🌐</div>
<div class="project-body">
<h3><a href="https://futurecommodities.co.uk" target="_blank" rel="noopener">Future Commodities (Beta)</a></h3>
<p>
Trade policy risk monitoring for global trade teams.
Tracks tariffs, sanctions, and market access changes in real time — turning regulatory signals into actionable workflows.
</p>
<a class="project-url" href="https://futurecommodities.co.uk" target="_blank" rel="noopener">futurecommodities.co.uk →</a>
</div>
</div>
</div>
</div>
</body>
</html>