Skip to content

Commit 702a57b

Browse files
陈济民claude
andcommitted
Add company: 复旦大学 / Fudan University affiliation
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
1 parent 0c3595b commit 702a57b

2 files changed

Lines changed: 11 additions & 3 deletions

File tree

src/components/Hero.jsx

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,15 @@ export default function Hero() {
4242
</p>
4343

4444
{/* Company / Affiliation */}
45-
{profile.company && (
46-
<p className="text-xl md:text-2xl text-gray-500 dark:text-gray-400 mb-6">
47-
{profile.company}
45+
{profile.companyZh && (
46+
<p className="text-lg md:text-xl text-gray-500 dark:text-gray-400 mb-1"
47+
style={{ fontFamily: '"PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif' }}>
48+
{profile.companyZh}
49+
</p>
50+
)}
51+
{profile.companyEn && (
52+
<p className="text-base md:text-lg text-gray-400 dark:text-gray-500 mb-6">
53+
{profile.companyEn}
4854
</p>
4955
)}
5056

src/data/profile.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ export const profile = {
55
title: "AI/LLM Engineer",
66
avatar: "", // Fill in your avatar URL, e.g. "https://avatars.githubusercontent.com/u/218558117"
77
company: "", // Your current company / affiliation
8+
companyZh: "复旦大学 计算与智能创新学院",
9+
companyEn: "College of Computer Science and Artificial Intelligence, Fudan University",
810
headline: "Building intelligent systems at the frontier of large language models.",
911

1012
about: [

0 commit comments

Comments
 (0)