feat: enhance user interface with CRT effects, update AboutMe and Projects sections, and add new Collab app
All checks were successful
Deploy / deploy (push) Successful in 14s

This commit is contained in:
M1ngdaXie
2026-05-07 21:42:06 +08:00
parent 38bc80c566
commit 74554210dd
11 changed files with 310 additions and 37 deletions

View File

@@ -10,7 +10,9 @@ export default function DesktopIcon({ app, onOpen }: Props) {
return (
<div className="desktop-icon" onDoubleClick={onOpen}>
<div className="desktop-icon-img" style={{ background: app.iconGradient }}>
<span>{app.emoji}</span>
{app.iconImage
? <img src={app.iconImage} alt={app.title} style={{ width: '70%', height: '70%', objectFit: 'contain' }} />
: <span>{app.emoji}</span>}
</div>
<span className="desktop-icon-label">{app.title}</span>
</div>