Skip to content

Commit 52132c6

Browse files
committed
Merge commit '242653d836430a88386564695e619be37776502f' into siheo
2 parents d7190cd + 242653d commit 52132c6

File tree

4 files changed

+68
-16
lines changed

4 files changed

+68
-16
lines changed

README.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ For more detailed information, please ask to [Seongil Heo](https://github.com/Se
2929
├── vite.config.js # Vite build and server configuration
3030
├── public/ # Static assets served directly
3131
│ ├── 404.html # Custom 404 page for GitHub Pages
32-
│ ├── manifest.json # PWA manifest (optional)
32+
│ ├── manifest.json # PWA manifest
3333
│ ├── robots.txt # Web crawler rules
3434
│ └── images # Image folders
3535
│ ├── placeholder.png # Default placeholder image
36-
│ ├── banner # Banner images
37-
│ ├── people # Member profile images
38-
│ ├── publications # Publication figures
39-
│ └── videos # Video preview thumbnails
36+
│ ├── banner/ # Banner images
37+
│ ├── people/ # Member profile images
38+
│ ├── publications/ # Publication figures
39+
│ └── videos/ # Video preview thumbnails
4040
├── scripts # Utility scripts
4141
│ ├── download-images.js # Script to download images from URLs in JSON data
4242
│ └── fetch-sheet.js # Script to fetch and convert Google Sheet to JSON
@@ -48,8 +48,7 @@ For more detailed information, please ask to [Seongil Heo](https://github.com/Se
4848
├── icons/ # Custom SVG icons
4949
├── layout/ # Shared layout elements (Header, Footer, etc.)
5050
├── pages/ # Route-specific page components
51-
├── routes/ # App route definitions
52-
└── App.jsx # (Duplicate entry; can be removed if redundant)
51+
└── routes/ # App route definitions
5352
```
5453

5554
## Features
@@ -75,4 +74,4 @@ The `.github/workflows/deploy.yaml` workflow performs:
7574
7675
## License
7776

78-
This project is licensed under the MIT License.
77+
This project is licensed under the MIT License.

package-lock.json

Lines changed: 59 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@
2525
"@types/react": "^19.1.6",
2626
"@types/react-dom": "^19.1.6",
2727
"@vitejs/plugin-react": "^4.5.1",
28-
"vite": "^6.3.5"
28+
"vite": "^6.3.6"
2929
}
3030
}

src/pages/People.jsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,11 @@ const People = () => {
3737
<li key={item.Id} className="flex flex-col md:flex-row gap-md">
3838
{/* Thumbnail */}
3939
<Thumbnail id={item.Id} path={item.Image} />
40-
{ }
4140
{/* Content */}
4241
<div className="space-y-xs">
4342
{/* Name */}
4443
<h3 className="text-ured">{item.Name}</h3>
45-
{item.Alumni && <p className="font-bold">{item.Role}</p>}
44+
{/* {item.Alumni && <p className="font-bold">{item.Role}</p>} */}
4645
{/* Bio */}
4746
<p>{item.Bio}</p>
4847
{/* Links */}

0 commit comments

Comments
 (0)