Conversation
…es (#33) * Initial plan * feat: add Engine Room section naming all five compliance engines - Add #engine-room section with cards for KiloKeep, PRFCTpack, RecallRepel, RegulaGreen, and GuaranGreen (In Evaluation) - Convert engine-badge in Approach section to anchor link scrolling to the new section - Add engine card grid CSS (.engines-grid, .engine-card, etc.) to styles.css; add hover + link styling to .engine-badge Co-authored-by: clearlineKris <250896112+clearlineKris@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: clearlineKris <250896112+clearlineKris@users.noreply.github.com>
There was a problem hiding this comment.
Pull request overview
Adds an “Engine Room” section to the landing page and turns the existing “Engine Room” badge in the “Our Approach” section into an in-page link, expanding the site’s marketing content for the compliance engines.
Changes:
- Convert the “Engine Room” badge from a static container into an anchor link targeting
#engine-room. - Add a new “Engine Room” section to
index.htmldescribing five compliance engines. - Introduce new CSS styles for the Engine Room section and engine cards.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
index.html |
Adds the new Engine Room section and links to it from the Approach section. |
styles.css |
Styles the new Engine Room section and updates .engine-badge to behave like a link. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| /* ===== Engine Room Section ===== */ | ||
| .engine-room { | ||
| background: var(--color-bg); | ||
| } |
There was a problem hiding this comment.
The section-level styles in this file are organized in page order (Hero → Services → Approach → Our Story → States → Contact → Footer). The new "Engine Room" block is inserted after the Footer styles, which breaks that convention and makes future maintenance harder. Consider moving the "Engine Room Section" styles to sit near the other section blocks (e.g., after the Approach section styles) while leaving the responsive rules at the bottom.
Compare Claude's sudden work to current status of target code to comment & possibly merge & push into main branch.