Skip to content

fix: address PR #100 follow-up feedback — typos, layout, shortcode rename#107

Open
Gowiem wants to merge 1 commit intomasterfrom
fix/pr-100-follow-up-typos-and-layout
Open

fix: address PR #100 follow-up feedback — typos, layout, shortcode rename#107
Gowiem wants to merge 1 commit intomasterfrom
fix/pr-100-follow-up-typos-and-layout

Conversation

@Gowiem
Copy link
Copy Markdown
Member

@Gowiem Gowiem commented Apr 10, 2026

what

Follow-up fixes from team feedback on PR #100 (homepage redesign + IAC audit page):

  • Homepage layout: Swapped "Join Clients Like:" heading below the descriptive paragraph so the label sits directly above the client logo carousel
  • Copy fix: Dropped leading "and" from step Develop into master #4 in the audit CTA numbered list for consistent style ("Provide practical recommendations...")
  • Typo fix: Corrected iac-sound-familieriac-sound-familiar in both the content section ID and the matching CSS selector
  • Shortcode rename: Renamed accordian.htmlaccordion.html and updated the shortcode call in iac-questions.md

why

references

🤖 Generated with Claude Code

Summary by CodeRabbit

  • Bug Fixes

    • Fixed spelling inconsistencies in section identifiers and CSS references
    • Corrected FAQ component shortcode name for proper functionality
  • Documentation

    • Reorganized content section heading placement
    • Refined bullet point text in content section

…e rename

- Swap "Join Clients Like" heading below the descriptive paragraph so the
  label sits directly above the client logo carousel (Megan feedback)
- Drop leading "and" from step #4 in the audit CTA list for consistent style
- Fix "iac-sound-familier" typo → "iac-sound-familiar" in frontmatter + CSS
- Rename accordian.html → accordion.html shortcode and update usage

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@Gowiem Gowiem requested a review from a team as a code owner April 10, 2026 21:28
@netlify
Copy link
Copy Markdown

netlify Bot commented Apr 10, 2026

Deploy Preview for masterpoint ready!

Name Link
🔨 Latest commit 14ff54a
🔍 Latest deploy log https://app.netlify.com/projects/masterpoint/deploys/69d96b93b208e50008757c88
😎 Deploy Preview https://deploy-preview-107--masterpoint.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.
Lighthouse
Lighthouse
1 paths audited
Performance: 43
Accessibility: 86
Best Practices: 92
SEO: 79
PWA: 70
View the detailed breakdown and full score reports

To edit notification comments on pull requests, go to your Netlify project configuration.

@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented Apr 10, 2026

Walkthrough

Fixes typos across multiple files, correcting "familier" to "familiar" and "accordian" to "accordion", and reorders a section heading. No logic or functionality is modified.

Changes

Cohort / File(s) Summary
Typo Fixes: Familiar
assets/css/custom.scss, content/sections/iac-sound-familiar.md
Corrected CSS ID selector and frontmatter ID from iac-sound-familier to iac-sound-familiar.
Shortcode Rename: Accordion
layouts/shortcodes/accordian.html, layouts/shortcodes/accordion.html, content/sections/iac-questions.md
Deleted misspelled accordian shortcode template and added correctly-spelled accordion shortcode; updated page reference to use new shortcode name.
Content Updates
content/sections/home-join-clients.md, content/sections/home-turn-chaos.md
Moved section heading to after paragraph and removed leading conjunction from final bullet point.

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~8 minutes

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately and comprehensively summarizes the main changes: it identifies the PR as a follow-up to #100 and lists the three key types of fixes (typos, layout, shortcode rename) that form the core of the changeset.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch fix/pr-100-follow-up-typos-and-layout

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick comments (1)
layouts/shortcodes/accordion.html (1)

5-5: Prefer a <button> trigger over href="javascript:void(0)".

This improves semantics and enables proper keyboard support and ARIA attributes for accordion toggle controls.

♻️ Proposed refactor
-    <h3 class="faqQ">
-      <a href="javascript:void(0)">{{ $faq.title }}</a>
-    </h3>
+    <h3 class="faqQ">
+      <button type="button" class="faq-toggle">{{ $faq.title }}</button>
+    </h3>
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@layouts/shortcodes/accordion.html` at line 5, Replace the non-semantic anchor
used as the accordion trigger (<a href="javascript:void(0)">{{ $faq.title
}}</a>) with a proper <button type="button"> trigger in the accordion shortcode,
and wire up accessible attributes: move the text "{{ $faq.title }}" into the
button, add aria-expanded="false" (toggle to true/false on click), add
aria-controls pointing to the associated panel id, and ensure the panel has a
matching id and role="region" or aria-hidden toggled; update any JS that queries
the anchor selector to target the button instead so keyboard and screen-reader
interaction works correctly.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Nitpick comments:
In `@layouts/shortcodes/accordion.html`:
- Line 5: Replace the non-semantic anchor used as the accordion trigger (<a
href="javascript:void(0)">{{ $faq.title }}</a>) with a proper <button
type="button"> trigger in the accordion shortcode, and wire up accessible
attributes: move the text "{{ $faq.title }}" into the button, add
aria-expanded="false" (toggle to true/false on click), add aria-controls
pointing to the associated panel id, and ensure the panel has a matching id and
role="region" or aria-hidden toggled; update any JS that queries the anchor
selector to target the button instead so keyboard and screen-reader interaction
works correctly.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository UI

Review profile: CHILL

Plan: Pro

Run ID: ed00fb11-8210-4366-9229-8e9f1be7eddf

📥 Commits

Reviewing files that changed from the base of the PR and between 634e2fa and 14ff54a.

📒 Files selected for processing (7)
  • assets/css/custom.scss
  • content/sections/home-join-clients.md
  • content/sections/home-turn-chaos.md
  • content/sections/iac-questions.md
  • content/sections/iac-sound-familiar.md
  • layouts/shortcodes/accordian.html
  • layouts/shortcodes/accordion.html
💤 Files with no reviewable changes (1)
  • layouts/shortcodes/accordian.html

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Copy Markdown
Member

@gberenice gberenice left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Gowiem what do you think about my second suggestion here #100 (comment)?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants