Add product-management journey section with timeline and styles#7
Add product-management journey section with timeline and styles#78Gaston8 wants to merge 1 commit into
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 91cf4d9c33
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| .pm-stop p { | ||
| margin-top: 10px; | ||
| font-size: 16px; | ||
| line-height: 1.25; |
There was a problem hiding this comment.
Preserve period label typography in timeline cards
The generic .pm-stop p rule overrides .pm-period because it appears later and has higher specificity (.pm-stop p vs .pm-period), so the date labels inside each timeline card render at 16px instead of the intended 11px. This makes the period markers visually compete with body copy and breaks the hierarchy the section is trying to establish; either scope the paragraph rule away from .pm-period or re-assert .pm-period styles after this block.
Useful? React with 👍 / 👎.
Motivation
Description
EXPERIENCEnav anchor and a new#experiencesection that presents roles as a story-driven PM timeline (Atly, Lumen, Optimove, earlier startups, NASA) with short outcome-oriented bullets.DISCOVERY,ROADMAPS,STORYTELLING,SHIPPING,IOS CRAFT,AI WORKFLOWS)..pm-journey,.pm-stop,.pm-timeline, and.pm-chipsrules inkinetic.cssto match the existing typography and color system.tests/test_site.pyto assert presence of the new nav anchor, PM journey content, key role lines, chips, and existing contact CTA.Testing
python -m unittest -v tests/test_site.pyand all tests passed (6 tests, OK).Codex Task