Skip to content

fix: update stale links from renamed repo and fix http URL#369

Open
VeerShah41 wants to merge 1 commit intokkrishguptaa:mainfrom
VeerShah41:fix/readme-broken-links
Open

fix: update stale links from renamed repo and fix http URL#369
VeerShah41 wants to merge 1 commit intokkrishguptaa:mainfrom
VeerShah41:fix/readme-broken-links

Conversation

@VeerShah41
Copy link
Copy Markdown

@VeerShah41 VeerShah41 commented Mar 19, 2026

  • Replace krshoss/gardevoir image URLs with current kkrishguptaa/reseter.css
  • Fix bundlephobia link from http to https
  • Replace broken wiki link with active GitHub Discussions page

Closes #135

Related Issue

Closes: #

Describe the changes you've made

How has this been tested?

Checklist

  • I have performed a self-review of my own code.
  • I have commented on my code, particularly wherever it was hard to understand.
  • I have made corresponding changes to the documentation.
  • I have followed the code style of the project
  • I have tested my code, and it works without errors

Additional Information

Code of Conduct

Summary by CodeRabbit

  • Documentation
    • Refreshed project branding and logos
    • Updated external resource links and screenshots
    • Migrated best practices and performance guides to GitHub Discussions for centralized community access
    • Enhanced security by updating external references to HTTPS protocol

- Replace krshoss/gardevoir image URLs with current kkrishguptaa/reseter.css
- Fix bundlephobia link from http to https
- Replace broken wiki link with active GitHub Discussions page

Closes kkrishguptaa#135
@coderabbitai
Copy link
Copy Markdown

coderabbitai bot commented Mar 19, 2026

📝 Walkthrough

Walkthrough

Updated README.md with new branding and resource links, changing references from the krshoss/gardevoir repository to kkrishguptaa/reseter.css. Changes include logo image URL, screenshot link, bundle size reference (upgrading to https), and documentation link from project wiki to GitHub Discussions.

Changes

Cohort / File(s) Summary
README Documentation
README.md
Updated repository branding and external resource links: logo image URL, "Browser Inconsistencies" screenshot URL, Bundle Phobia link (http → https), and documentation reference (wiki → GitHub Discussions).

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~3 minutes

Poem

🐰 A README refreshed with links so new,
Old repos fade, the branding breaks through,
From krshoss to kkrishguptaa's name,
Our little garden grows with pride—no shame! 🌱✨

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately describes the main changes: updating stale links from a renamed repository and fixing an HTTP URL to HTTPS.
Linked Issues check ✅ Passed The PR directly addresses issue #135 by repairing broken README links, including image URLs and the BundlePhobia documentation link.
Out of Scope Changes check ✅ Passed All changes are scoped to fixing broken README links as required by issue #135; no unrelated modifications are present.
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
📝 Coding Plan
  • Generate coding plan for human review comments

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.

Tip

You can validate your CodeRabbit configuration file in your editor.

If your editor has YAML language server, you can enable auto-completion and validation by adding # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json at the top of your CodeRabbit configuration file.

Copy link
Copy Markdown

@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.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@README.md`:
- Line 2: The HTML snippet in the README has a mismatched heading closure and
missing image alt text; update the closing tag for the heading opened with <h1>
(replace the erroneous </h5>) so it properly closes as </h1>, and add a
meaningful alt attribute to the <img> element (e.g., alt="Gardevoir logo" or
similar) to improve accessibility while keeping the existing attributes and
layout intact.

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: be344ae8-edff-4e9c-ab01-62519f74b79f

📥 Commits

Reviewing files that changed from the base of the PR and between 057a9b1 and bdb2a49.

📒 Files selected for processing (1)
  • README.md

@@ -1,5 +1,5 @@
<!-- markdownlint-disable-next-line -->
<div align="center"><img height="100px" width="100px" src="https://github.com/krshoss/gardevoir/raw/main/.github/assets/gardevoir.png"><br><h1>The Modern CSS Reset 🚀</h5></div>
<div align="center"><img height="100px" width="100px" src="https://github.com/kkrishguptaa/reseter.css/raw/main/.github/assets/gardevoir.png"><br><h1>The Modern CSS Reset 🚀</h5></div>
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🔴 Critical

Fix invalid heading tag closure (and add image alt text).

Line 2 opens with <h1> but closes with </h5>, which breaks valid HTML structure. Also consider adding alt for accessibility.

Proposed fix
-<div align="center"><img height="100px" width="100px" src="https://github.com/kkrishguptaa/reseter.css/raw/main/.github/assets/gardevoir.png"><br><h1>The Modern CSS Reset 🚀</h5></div>
+<div align="center"><img height="100px" width="100px" src="https://github.com/kkrishguptaa/reseter.css/raw/main/.github/assets/gardevoir.png" alt="Gardevoir logo"><br><h1>The Modern CSS Reset 🚀</h1></div>
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
<div align="center"><img height="100px" width="100px" src="https://github.com/kkrishguptaa/reseter.css/raw/main/.github/assets/gardevoir.png"><br><h1>The Modern CSS Reset 🚀</h5></div>
<div align="center"><img height="100px" width="100px" src="https://github.com/kkrishguptaa/reseter.css/raw/main/.github/assets/gardevoir.png" alt="Gardevoir logo"><br><h1>The Modern CSS Reset 🚀</h1></div>
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@README.md` at line 2, The HTML snippet in the README has a mismatched heading
closure and missing image alt text; update the closing tag for the heading
opened with <h1> (replace the erroneous </h5>) so it properly closes as </h1>,
and add a meaningful alt attribute to the <img> element (e.g., alt="Gardevoir
logo" or similar) to improve accessibility while keeping the existing attributes
and layout intact.

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.

Read me file links broken (more)

1 participant