{"id":26104619,"url":"https://github.com/subhajitroycode/conference-ticket-generator","last_synced_at":"2026-05-05T17:32:18.709Z","repository":{"id":281506874,"uuid":"945486128","full_name":"subhajitroycode/conference-ticket-generator","owner":"subhajitroycode","description":"A conference ticket generator app using React \u0026 tailwind challenged by Frontend Mentor.","archived":false,"fork":false,"pushed_at":"2025-03-10T06:38:36.000Z","size":1008,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-26T22:42:57.383Z","etag":null,"topics":["frontend-mentor","frontend-mentor-challenge","frontendmentor-challenge","react","tailwindcss"],"latest_commit_sha":null,"homepage":"https://conference-ticket-subhajitroycode.netlify.app","language":"JavaScript","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/subhajitroycode.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-03-09T14:40:32.000Z","updated_at":"2025-03-10T06:38:39.000Z","dependencies_parsed_at":null,"dependency_job_id":"f5abc992-8509-4c89-b89c-2669996f935c","html_url":"https://github.com/subhajitroycode/conference-ticket-generator","commit_stats":null,"previous_names":["subhajitroycode/conference-ticket-generator"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/subhajitroycode/conference-ticket-generator","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/subhajitroycode%2Fconference-ticket-generator","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/subhajitroycode%2Fconference-ticket-generator/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/subhajitroycode%2Fconference-ticket-generator/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/subhajitroycode%2Fconference-ticket-generator/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/subhajitroycode","download_url":"https://codeload.github.com/subhajitroycode/conference-ticket-generator/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/subhajitroycode%2Fconference-ticket-generator/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32660253,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-05T11:29:49.557Z","status":"ssl_error","status_checked_at":"2026-05-05T11:29:48.587Z","response_time":54,"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":["frontend-mentor","frontend-mentor-challenge","frontendmentor-challenge","react","tailwindcss"],"created_at":"2025-03-09T21:01:49.535Z","updated_at":"2026-05-05T17:32:18.700Z","avatar_url":"https://github.com/subhajitroycode.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Frontend Mentor - Conference ticket generator solution\n\nThis is a solution to the [Conference ticket generator challenge on Frontend Mentor](https://www.frontendmentor.io/challenges/conference-ticket-generator-oq5gFIU12w). Frontend Mentor challenges help you improve your coding skills by building realistic projects. \n\n## Table of contents\n\n- [Frontend Mentor - Conference ticket generator solution](#frontend-mentor---conference-ticket-generator-solution)\n  - [Table of contents](#table-of-contents)\n  - [Overview](#overview)\n    - [The challenge](#the-challenge)\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  - [Author](#author)\n\n## Overview\n\n### The challenge\n\nUsers should be able to:\n\n- Complete the form with their details\n- Receive form validation messages if:\n  - Any field is missed\n  - The email address is not formatted correctly\n  - The avatar upload is too big or the wrong image format\n- Complete the form only using their keyboard\n- Have inputs, form field hints, and error messages announced on their screen reader\n- See the generated conference ticket when they successfully submit the form\n- View the optimal layout for the interface depending on their device's screen size\n- See hover and focus states for all interactive elements on the page\n\n### Screenshot\n\n![](./public/screenshot.png)\n\n### Links\n\n- Live Site URL: [Click here](https://conference-ticket-subhajitroycode.netlify.app)\n\n## My process\n\n### Built with\n\n- Semantic HTML5 markup\n- CSS custom properties\n- [React](https://reactjs.org/) - JS library\n- [Tailwind CSS](https://tailwindcss.com/) - For styles\n\n### What I learned\n\nDuring this project, I gained valuable experience with React Router's navigation features:\n\n1. **useNavigate Hook**: \n   - Learned how to programmatically navigate users after form submissions\n   - Used it to redirect users to the ticket confirmation page with form data:\n   ```jsx\n   const navigate = useNavigate();\n   \n   // Navigate with state data\n   navigate(\"/ticket-confirmation\", {\n     state: { userData: formData },\n     replace: true\n   });\n   ```\n\n2. **Navigate Component**:\n   - Discovered how to handle unauthorized access to protected routes\n   - Implemented redirect functionality for users trying to access the ticket page directly:\n   ```jsx\n   return !ticketData ? (\n     \u003cNavigate to=\"/\" /\u003e\n   ) : (\n     // Ticket confirmation content\n   );\n   ```\n\nThese React Router features helped create a smoother navigation flow and better user experience in the application, especially for handling form submissions and protected routes.\n\n### Continued development\n\nIn future I plan to focus on:\n\n- Enhancing form validation with more detailed error messages\n- Improving accessibility features with ARIA labels and keyboard navigation\n- Adding form data persistence using local storage\n- Implementing a more robust image upload validation system\n- Adding animation transitions between route changes\n\n## Author\n\n- Frontend Mentor - [@subhajitroycode](https://www.frontendmentor.io/profile/subhajitroycode)\n- LinkedIn - [@subhajitroycode](https://www.linkedin.com/in/subhajitroycode)\n- Twitter / X - [@subhajitroycode](https://www.twitter.com/subhajitroycode)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsubhajitroycode%2Fconference-ticket-generator","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsubhajitroycode%2Fconference-ticket-generator","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsubhajitroycode%2Fconference-ticket-generator/lists"}