feat: add all app components (AboutMe, Projects, Links, Alfred, Chengyu, Poker, Trash, Terminal)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
M1ngdaXie
2026-03-26 14:34:32 -07:00
parent 42bc84b278
commit 4425047f8d
8 changed files with 381 additions and 0 deletions

12
src/apps/Trash.tsx Normal file
View File

@@ -0,0 +1,12 @@
export default function Trash() {
return (
<div style={{ padding: 40, color: '#fff', textAlign: 'center' }}>
<div style={{ fontSize: 64, marginBottom: 16 }}>🗑</div>
<h2 style={{ fontSize: 18, fontWeight: 600, marginBottom: 8 }}>Trash</h2>
<p style={{ fontSize: 13, color: 'rgba(255,255,255,0.4)', marginBottom: 20 }}>The trash is empty.</p>
<p style={{ fontSize: 12, color: 'rgba(255,255,255,0.2)', fontStyle: 'italic' }}>
just like my social life
</p>
</div>
);
}