{"id":23711282,"url":"https://github.com/sdkdeepa/qrcode-component","last_synced_at":"2026-01-27T01:02:01.926Z","repository":{"id":270172495,"uuid":"909301422","full_name":"sdkdeepa/QRCode-component","owner":"sdkdeepa","description":"Building QR Code component in React","archived":false,"fork":false,"pushed_at":"2024-12-29T02:37:07.000Z","size":56,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-30T07:24:29.978Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sdkdeepa.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2024-12-28T09:42:38.000Z","updated_at":"2024-12-29T02:37:10.000Z","dependencies_parsed_at":"2024-12-29T05:00:46.632Z","dependency_job_id":null,"html_url":"https://github.com/sdkdeepa/QRCode-component","commit_stats":null,"previous_names":["sdkdeepa/qrcode-component"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sdkdeepa/QRCode-component","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sdkdeepa%2FQRCode-component","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sdkdeepa%2FQRCode-component/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sdkdeepa%2FQRCode-component/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sdkdeepa%2FQRCode-component/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sdkdeepa","download_url":"https://codeload.github.com/sdkdeepa/QRCode-component/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sdkdeepa%2FQRCode-component/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28794530,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-26T21:49:50.245Z","status":"ssl_error","status_checked_at":"2026-01-26T21:48:29.455Z","response_time":59,"last_error":"SSL_read: 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":[],"created_at":"2024-12-30T19:37:47.194Z","updated_at":"2026-01-27T01:02:01.904Z","avatar_url":"https://github.com/sdkdeepa.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"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- [Frontend Mentor - QR code component solution](#frontend-mentor---qr-code-component-solution)\n  - [Table of contents](#table-of-contents)\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\n\n## Overview\n\u003chr /\u003e\n\n### Screenshot\n\n![Desktop view](/design/desktop-design.jpg)\n![Mobile view](/design/mobile-design.jpg)\n\n\n### Links\n\n- Solution: https://github.com/sdkdeepa/QRCode-component\n- Live website : https://sdkdeepa.github.io/QRCode-component\n\n## My process\nFirst built semmatic HTML and then figured our the styling. Added accessibility at the end.\n\n### Built with\n\n- Semantic HTML5 markup\n- CSS custom properties\n- Flexbox\n- Accessibility: alt text for the image and taborder\n\n\n### What I learned\n\nI learnt about `rem` and `color: hls()` in css. Also learnt how to add `tab order` in the HTML for the elements present.\n\n```css\nbody {\n\tbackground-color: hsl(212, 45%, 89%);\n\tfont-size: 15px;\n\tfont-family: 'Outfit', sans-serif;\n\tdisplay: flex;\n\tflex-direction: column;\n\talign-items: center;\n\tjustify-content: center;\n\tmargin: 4rem;\n}\n\n.card {\n\tbackground-color: hsl(0, 0%, 100%);\n\tbox-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);\n\tborder-radius: 0.625rem;\n\twidth: 200px;\n\tpadding: 0.9rem;\n\tmargin-bottom: 1rem;\n}\n\n```\n\n### Continued development\n\nI would like to build my own QR code generator. I could use for my content sharing such as videos, netlify urls or my workshop. this was I don't need to use external QR Geneators.\n\n### Useful resources\nRead these to refresh my memory: \n1. [Tab Order](https://learning.oreilly.com/library/view/html-xhtml/0321430840/0321430840_ch06lev1sec8.html)\n2. [color:hsl](https://learning.oreilly.com/videos/modern-html/9781835880562/9781835880562-video5_6/)\n3. [Flexbox](https://learning.oreilly.com/videos/modern-html/9781835880562/9781835880562-video7_2/)\n4. [REM](https://learning.oreilly.com/videos/modern-html/9781835880562/9781835880562-video8_4/)\n\n### Author\n**Frontend Mentor - [@sdkdeepa](https://www.frontendmentor.io/profile/sdkdeepa)**\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsdkdeepa%2Fqrcode-component","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsdkdeepa%2Fqrcode-component","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsdkdeepa%2Fqrcode-component/lists"}