UNIT 27 • STAGE 2 OF 7

About + Skills

Two-column about section with gradient avatar and skill tag chips

UNIT 2 / 7
STEP 1

The About Section: Telling Your Story

A portfolio about section is not a resume. It is a story that answers: who are you, what do you care about, and why should someone hire or work with you? For this unit, the default character (Jordan Bearcub) uses their Indigenous identity and community-focused mission as part of their professional story — which is exactly how it should work. Your story is part of your value.

The layout is two columns: a square avatar placeholder and social links on the left, prose bio and skill tags on the right.

STEP 2

Add the About CSS and HTML

👉 Key CSS: .about-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; }
.avatar { width: 100%; aspect-ratio: 1/1; border-radius: 16px; background: linear-gradient(135deg, var(--accent), var(--accent2)); display: flex; align-items: center; justify-content: center; font-size: 5rem; font-weight: 700; }
.skill-tag:hover { transform: translateY(-2px); border-color: var(--accent); }

Include the light-mode CSS variable overrides so the about section adapts when the theme toggles. Since all colors use var(--bg), var(--surface), etc., they will update automatically when those variables change.

Stage 2 Complete

The about section displays your story, avatar initials, social links, and skill tags. When you add light mode later, all the colors adapt automatically.

Code Editor
Live Preview