{"id":19854424,"url":"https://github.com/6hislain/qr-code-component","last_synced_at":"2026-03-19T12:03:23.491Z","repository":{"id":122479154,"uuid":"514508816","full_name":"6hislain/qr-code-component","owner":"6hislain","description":"QR code component - frontend mentor challenge","archived":false,"fork":false,"pushed_at":"2022-10-04T18:44:37.000Z","size":135,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-31T22:42:24.859Z","etag":null,"topics":["challenge","frontendmentor","frontendmentor-challenge"],"latest_commit_sha":null,"homepage":"https://benevolent-palmier-51a41d.netlify.app/","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/6hislain.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-07-16T07:24:13.000Z","updated_at":"2023-11-20T08:23:03.000Z","dependencies_parsed_at":null,"dependency_job_id":"da258fba-b1e1-4327-8aa7-7872bd48ae66","html_url":"https://github.com/6hislain/qr-code-component","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/6hislain/qr-code-component","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/6hislain%2Fqr-code-component","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/6hislain%2Fqr-code-component/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/6hislain%2Fqr-code-component/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/6hislain%2Fqr-code-component/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/6hislain","download_url":"https://codeload.github.com/6hislain/qr-code-component/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/6hislain%2Fqr-code-component/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29333562,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T12:42:24.625Z","status":"ssl_error","status_checked_at":"2026-02-11T12:41:23.344Z","response_time":97,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["challenge","frontendmentor","frontendmentor-challenge"],"created_at":"2024-11-12T14:09:28.328Z","updated_at":"2026-02-11T13:34:06.275Z","avatar_url":"https://github.com/6hislain.png","language":"HTML","readme":"# Frontend Mentor - QR code component solution\n\nThis is a solution to the [QR code component challenge on Frontend Mentor](https://www.frontendmentor.io/challenges/qr-code-component-iux_sIO_H). Frontend Mentor challenges help you improve your coding skills by building realistic projects.\n\n## Table of contents\n\n- [Overview](#overview)\n  - [Screenshot](#screenshot)\n  - [Links](#links)\n- [My process](#my-process)\n  - [Built with](#built-with)\n  - [What I learned](#what-i-learned)\n  - [Continued development](#continued-development)\n  - [Useful resources](#useful-resources)\n- [Author](#author)\n- [Acknowledgments](#acknowledgments)\n\n## Overview\n\n### Screenshot\n\n![Screenshot](./screenshot.png)\n\n### Links\n\n- Solution URL: [github.com/6hislain/qr-code-component](https://github.com/6hislain/qr-code-component)\n- Live Site URL: [demo on netlify](https://benevolent-palmier-51a41d.netlify.app/)\n\n## My process\n\n### Built with\n\n- Semantic HTML5 markup\n- CSS custom properties\n- Flexbox\n\n### What I learned\n\nI learnt to center a card in the middle of a page using flexbox\n\n```html\n\u003c!-- index.html line 25 --\u003e\n\u003cdiv class=\"card\"\u003e\n  \u003cimg src=\"./images/image-qr-code.png\" alt=\"QR code\" class=\"qr-image\" /\u003e\n  \u003ch2\u003eImprove your front-end skills by building projects\u003c/h2\u003e\n  \u003cp\u003e\n    Scan the QR code to visit Frontend Mentor and take your coding skills to the\n    next level\n  \u003c/p\u003e\n\u003c/div\u003e\n```\n\n```css\n/* css/style.css line 9 */\n.container {\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  max-width: 1440px;\n  margin: auto;\n  gap: 30px;\n  min-height: 100vh;\n}\n\n.card {\n  background: hsl(0, 0%, 100%);\n  width: 260px;\n  padding: 15px;\n  border-radius: 15px;\n  text-align: center;\n}\n```\n\n### Continued development\n\nI am going to try completing more coding challenges on _Frontend Mentor_\n\n### Useful resources\n\n- [CSS Tricks - flexbox guide](https://css-tricks.com/snippets/css/a-guide-to-flexbox/) - this article guided me on how to use flexbox\n- [W3 School - css media queries](https://www.w3schools.com/css/css3_mediaqueries.asp) - this also helped me on media queries\n\n## Author\n\n- Bio Link - [bio.link/6hislain](https://www.bio.link/6hislain)\n- Frontend Mentor - [@6hislain](https://www.frontendmentor.io/profile/6hislain)\n- Twitter - [@6hislain](https://www.twitter.com/6hislain)\n\n## Acknowledgments\n\nThanks to [Kevin Powell](https://www.youtube.com/kepowob) youtube videos, I started doing _Frontend Mentor_ challenges\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F6hislain%2Fqr-code-component","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F6hislain%2Fqr-code-component","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F6hislain%2Fqr-code-component/lists"}