Add ilikeapplesandbananas contributor card#47
Conversation
There was a problem hiding this comment.
Pull request overview
Adds a new contributor card HTML snippet to be loaded into the main contributors page.
Changes:
- Added
contributors/ilikeapplesandbananas.htmlcontributor card with bio, language badges, tool list, and inline styles.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| <p>Final year, top student studing Computer Science while attending the Bitcoin Lightning Bootcamp</p></br> | ||
| <h4>Programming languages I use</h4></br> |
There was a problem hiding this comment.
</br> is not a valid HTML tag (the line break element is <br> and it doesn’t have an end tag in HTML5). This will show up as a markup/console validation error; prefer removing these and using CSS spacing or replace with a proper <br> where truly needed.
| <il>Python</il> | ||
| <il>JavaScript</il> | ||
| <il>TypeScript</il> | ||
| <il>Rust</il> |
There was a problem hiding this comment.
<il> is not a valid HTML element. If these are intended as list items, use <li> inside a <ul>/<ol>; otherwise remove this block and represent languages consistently (e.g., with the existing badge section).
| <il>Python</il> | |
| <il>JavaScript</il> | |
| <il>TypeScript</il> | |
| <il>Rust</il> | |
| <ul> | |
| <li>Python</li> | |
| <li>JavaScript</li> | |
| <li>TypeScript</li> | |
| <li>Rust</li> | |
| </ul> |
| <h4>Tools I use</h4></br> | ||
| <li>Windows Powershell</h4> | ||
| <li>Polar</li> |
There was a problem hiding this comment.
These <li> elements are not inside a <ul>/<ol>, and the first item is closed with </h4> (mismatched tag). This is invalid HTML and may break the page structure; wrap the items in a proper list and fix the closing tag.
| @@ -0,0 +1,42 @@ | |||
| <article> | |||
| <h3>Mbesa</h3> | |||
| <p>Final year, top student studing Computer Science while attending the Bitcoin Lightning Bootcamp</p></br> | |||
There was a problem hiding this comment.
Typo in bio: "studing" should be "studying".
| <p>Final year, top student studing Computer Science while attending the Bitcoin Lightning Bootcamp</p></br> | |
| <p>Final year, top student studying Computer Science while attending the Bitcoin Lightning Bootcamp</p></br> |
Before submitting this pull request, please go through the checklist below.
If you're doing something in the checklist, put an
xinside[ ]so that- [ ]becomes- [x]