Skip to content

Commit 4b75da7

Browse files
committed
modified: app/components/LangSwitch.tsx
modified: app/en/page.tsx modified: app/ja/page.tsx modified: app/page.tsx
1 parent 9ac9fcf commit 4b75da7

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

app/components/LangSwitch.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export default function LangSwitch() {
3838
<div className="lang-dropdown">
3939

4040
<button ref={btnRef} className="btn btn-outline btn-inline" aria-haspopup="menu" aria-expanded={open} onClick={() => setOpen(v => !v)}>
41-
<Image src="/language-svgrepo-com.svg" alt="CogNLP Lab" width={20} height={20} />
41+
<Image src="/people/wang_hao/language-svgrepo-com.svg" alt="CogNLP Lab" width={20} height={20} />
4242
{currentLabel}
4343
</button>
4444
{open && (

app/en/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export default function HomePageEN() {
4444
<h2 className="section-title">{t.about.title}</h2>
4545
<div className="about-grid">
4646
<div className="about-photo">
47-
<Image src="/wang_hao.jpeg" alt="Hao WANG" width={300} height={300} style={{ width: '100%', height: 'auto' }} />
47+
<Image src="/people/wang_hao/wang_hao.jpeg" alt="Hao WANG" width={300} height={300} style={{ width: '100%', height: 'auto' }} />
4848
</div>
4949
<div>
5050
{t.profile && t.profile.name && Array.isArray(t.profile.lines) && (

app/ja/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export default function HomePageJA() {
4343

4444
<div className="about-grid ">
4545
<div className="about-photo">
46-
<Image src="/wang_hao.jpeg" alt="Hao WANG" width={300} height={300} style={{ width: '100%', height: 'auto' }} />
46+
<Image src="/people/wang_hao/wang_hao.jpeg" alt="Hao WANG" width={300} height={300} style={{ width: '100%', height: 'auto' }} />
4747
</div>
4848
<div>
4949
{t.profile && t.profile.name && Array.isArray(t.profile.lines) && (

app/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export default function HomePage() {
4444
<h2 className="section-title">{t.about.title}</h2>
4545
<div className="about-grid">
4646
<div className="about-photo">
47-
<Image src="/wang_hao.jpeg" alt="Hao WANG" width={300} height={300} style={{ width: '100%', height: 'auto' }} />
47+
<Image src="/people/wang_hao/wang_hao.jpeg" alt="Hao WANG" width={300} height={300} style={{ width: '100%', height: 'auto' }} />
4848
</div>
4949
<div>
5050
{t.profile && t.profile.name && Array.isArray(t.profile.lines) && (

0 commit comments

Comments
 (0)