feat: bento grid redesign + terminal-style footer#4
Merged
Conversation
Replace the long vertical scroll of 7 sections with a single bento
grid screen. Each card shows a preview; clicking opens a drawer
with the full section content (right anchor on desktop, bottom on
mobile).
- new components: BentoCard, BentoGrid, SectionDrawer, previews
- 7 cards: About, GitHub, Skills (2x2), Experience, Certs,
Services, Contact (full-width CTA)
- GitHub preview uses real react-github-calendar data, not
randomized squares
- Skills preview shows 9 tech icons in a 3x3 grid
- App.tsx: collapse the 7 sections into <Hero> + <BentoGrid> +
<Footer>; section components are lazy-loaded into the drawer
- Header.tsx: nav clicks now drive URL hash (#about, #skills, ...)
which BentoGrid listens to and opens the matching drawer; active
state tracks the hash
- main bundle: 343KB -> 215KB gzipped (-128KB) thanks to lazy
drawer chunks
Drop the old 3-column corporate layout (brand / quick-links / contact-info) — the quick links and contact info are already reachable via the header nav and the bento drawers, so they were duplicate noise. The new footer is a faux terminal: - macOS-style title bar with red/yellow/amber dots and a "vuxuananh@portfolio: ~" title - four "commands" (whoami, cat /status, ls ~/contact, echo $LOCATION) with their outputs in zsh-like colors - contact links inline as clickable terminal output - blinking cursor on the active prompt line - monospace stack (Fira Code / JetBrains Mono / Menlo) - below the window: two `// comment`-style credit lines
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Major UX redesign — the portfolio is now a single-screen bento grid instead of 7 stacked sections, paired with a terminal-themed footer.
1. feat(bento): redesign portfolio with bento grid + drawer pattern
2. feat(footer): redesign as a terminal window
Bundle impact
Test plan