{"id":26218100,"url":"https://github.com/arnobt78/Backroads--React-Landing-Page","last_synced_at":"2025-03-12T13:15:31.416Z","repository":{"id":276516602,"uuid":"929510214","full_name":"arnobt78/Backroads--React-Landing-Page","owner":"arnobt78","description":"The Backroads App is a travel and tour booking landing page application built with React. It provides users with an intuitive interface to explore and book various travel packages.","archived":false,"fork":false,"pushed_at":"2025-02-08T18:14:02.000Z","size":847,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-12T13:15:27.103Z","etag":null,"topics":["booking-app","html-css-javascript","javascript-applications","landing-page","netlify-deployment","react","react-components","reactjs","tourism-website"],"latest_commit_sha":null,"homepage":"https://backroads-arnob.netlify.app/","language":"CSS","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/arnobt78.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":"2025-02-08T18:00:25.000Z","updated_at":"2025-02-23T20:51:28.000Z","dependencies_parsed_at":"2025-02-08T19:21:47.479Z","dependency_job_id":null,"html_url":"https://github.com/arnobt78/Backroads--React-Landing-Page","commit_stats":null,"previous_names":["arnobt78/backroads-react-landing-page"],"tags_count":0,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arnobt78%2FBackroads--React-Landing-Page","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arnobt78%2FBackroads--React-Landing-Page/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arnobt78%2FBackroads--React-Landing-Page/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/arnobt78%2FBackroads--React-Landing-Page/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/arnobt78","download_url":"https://codeload.github.com/arnobt78/Backroads--React-Landing-Page/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243222183,"owners_count":20256229,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["booking-app","html-css-javascript","javascript-applications","landing-page","netlify-deployment","react","react-components","reactjs","tourism-website"],"created_at":"2025-03-12T13:15:29.852Z","updated_at":"2025-03-12T13:15:31.403Z","avatar_url":"https://github.com/arnobt78.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\u003cimg width=\"1163\" alt=\"Screenshot 2025-02-08 at 23 51 28\" src=\"https://github.com/user-attachments/assets/d1aaa78e-e93c-4708-bf61-26b57b276686\" /\u003e\u003cimg width=\"1206\" alt=\"Screenshot 2025-02-08 at 23 51 48\" src=\"https://github.com/user-attachments/assets/bb6af9af-7deb-479f-9e7a-1df1a6a985e2\" /\u003e\u003cimg width=\"1170\" alt=\"Screenshot 2025-02-08 at 23 52 02\" src=\"https://github.com/user-attachments/assets/a0edbced-62da-4570-b90c-3eb842878012\" /\u003e\u003cimg width=\"1191\" alt=\"Screenshot 2025-02-08 at 23 52 19\" src=\"https://github.com/user-attachments/assets/94b117d1-cf8b-4c80-b33d-05b9d74f725a\" /\u003e\u003cimg width=\"1162\" alt=\"Screenshot 2025-02-08 at 23 52 34\" src=\"https://github.com/user-attachments/assets/0a21250d-ee71-49bf-98ad-5e7dd63a256c\" /\u003e\n\n## Backroads App\n\nThe Backroads App is a travel and tour booking landing page application built with React. It provides users with an intuitive interface to explore and book various travel packages. The project is divided into two main versions:\n\n- **backroads-js-version**: A working project using HTML, CSS, and JavaScript.\n- **backroads-react-version**: A fully functional React application.\n  \n**Online Live:** https://backroads-arnob.netlify.app/\n\n### Features\n\n- Browse and book travel packages\n- Responsive design for seamless experience across devices\n- Integration with third-party services for booking and payments\n- User authentication and profile management\n\n## Getting Started\n\nTo get started with the React version of the Backroads App:\n\n1. Navigate to the project folder.\n2. Install the dependencies:\n\n```sh\n   npm install\n```\n\n3. Start the development server:\n\n```sh\nnpm start\n```\n\n4. For backroads-html file as javascript version, go to that folder, run:\n\n```sh\nopen index.html\n```\n\n## Continuous Deployment\n\n- fix warnings (About Section)\n\n- netlify account\n- github account\n- basic git commands :\n\n  - remove existing git repo\n    - Mac : rm -rf .git\n    - Windows : rmdir -Force -Recurse .git\n    - Windows : rd /s /q .git\n  - setup new repo\n    - git init\n      create an empty git repository\n    - git add\n      adds new or changed files in your working directory\n      to the Git staging area\n    - git add .\n      adds entire project\n      apart from files/directories specified in .gitignore\n    - git commit -m \"first commit\"\n      A shortcut command that immediately creates a commit\n      with a passed commit message.\n    - push to github\n      git remote add origin git@github.com:your-profile/repo-name.git\n      git branch -M main\n      git push -u origin main\n\n## Warnings \"Gotcha\"\n\n- Netlify treats warnings as errors\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farnobt78%2FBackroads--React-Landing-Page","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Farnobt78%2FBackroads--React-Landing-Page","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Farnobt78%2FBackroads--React-Landing-Page/lists"}