Skip to content

Commit 0c3595b

Browse files
陈济民claude
andcommitted
Update name to 陈济民 / Jimin Chen with bilingual typography
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
1 parent 17b5b28 commit 0c3595b

4 files changed

Lines changed: 17 additions & 7 deletions

File tree

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<!doctype html>
2-
<html lang="en">
2+
<html lang="zh-CN">
33
<head>
44
<meta charset="UTF-8" />
55
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>Stageholic - AI/LLM Engineer</title>
7+
<title>陈济民 Jimin Chen — AI/LLM Engineer</title>
88
</head>
99
<body>
1010
<div id="root"></div>

src/components/About.jsx

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,17 @@ export default function About() {
1212
<div className="flex items-center gap-6 mb-10">
1313
<div className="w-24 h-24 rounded-full bg-purple-100 dark:bg-purple-900/30 flex items-center justify-center text-3xl font-bold text-purple-600 dark:text-purple-400 shrink-0 overflow-hidden">
1414
{profile.avatar ? (
15-
<img src={profile.avatar} alt={profile.name} className="w-full h-full object-cover" />
15+
<img src={profile.avatar} alt={profile.nameZh} className="w-full h-full object-cover" />
1616
) : (
17-
profile.name[0]
17+
profile.nameZh[0]
1818
)}
1919
</div>
2020
<div>
21-
<h3 className="text-2xl font-bold text-gray-900 dark:text-white">{profile.name}</h3>
21+
<h3 className="text-2xl font-bold text-gray-900 dark:text-white"
22+
style={{ fontFamily: '"PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif' }}>
23+
{profile.nameZh}
24+
</h3>
25+
<p className="text-lg text-gray-400 dark:text-gray-500">{profile.nameEn}</p>
2226
<p className="text-lg text-purple-600 dark:text-purple-400">{profile.title}</p>
2327
</div>
2428
</div>

src/components/Hero.jsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,13 @@ export default function Hero() {
3333
</div>
3434

3535
{/* Name */}
36-
<h1 className="text-6xl md:text-8xl font-bold tracking-tight text-gray-900 dark:text-white mb-4">
37-
{profile.name}
36+
<h1 className="text-6xl md:text-8xl font-bold tracking-wide text-gray-900 dark:text-white mb-2"
37+
style={{ fontFamily: '"PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif' }}>
38+
{profile.nameZh}
3839
</h1>
40+
<p className="text-2xl md:text-3xl font-medium text-gray-400 dark:text-gray-500 mb-6 tracking-tight">
41+
{profile.nameEn}
42+
</p>
3943

4044
{/* Company / Affiliation */}
4145
{profile.company && (

src/data/profile.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
export const profile = {
22
name: "Stageholic",
3+
nameZh: "陈济民",
4+
nameEn: "Jimin Chen",
35
title: "AI/LLM Engineer",
46
avatar: "", // Fill in your avatar URL, e.g. "https://avatars.githubusercontent.com/u/218558117"
57
company: "", // Your current company / affiliation

0 commit comments

Comments
 (0)