{"id":21685787,"url":"https://github.com/chandan8018/fyle_assignment","last_synced_at":"2026-04-11T01:03:21.893Z","repository":{"id":248207003,"uuid":"828072618","full_name":"Chandan8018/Fyle_Assignment","owner":"Chandan8018","description":"The page is styled with Tailwind CSS, Bootstrap, and Flowbite, and includes several interactive features such as a contact form pop-up and an image slider.","archived":false,"fork":false,"pushed_at":"2024-07-14T05:31:59.000Z","size":11755,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-20T11:46:23.599Z","etag":null,"topics":["bootstrap5","flowbite-react","react-router-dom","reactjs","tailwindcss"],"latest_commit_sha":null,"homepage":"https://chandan8018.github.io/Fyle_Assignment/","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/Chandan8018.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-07-13T03:46:32.000Z","updated_at":"2024-07-14T05:32:02.000Z","dependencies_parsed_at":"2024-07-13T04:45:18.954Z","dependency_job_id":"e6c9c757-8c11-4961-9c2c-fe7204b7d7d3","html_url":"https://github.com/Chandan8018/Fyle_Assignment","commit_stats":null,"previous_names":["chandan8018/fyle_assignment"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Chandan8018/Fyle_Assignment","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Chandan8018%2FFyle_Assignment","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Chandan8018%2FFyle_Assignment/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Chandan8018%2FFyle_Assignment/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Chandan8018%2FFyle_Assignment/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Chandan8018","download_url":"https://codeload.github.com/Chandan8018/Fyle_Assignment/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Chandan8018%2FFyle_Assignment/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265224161,"owners_count":23730345,"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":["bootstrap5","flowbite-react","react-router-dom","reactjs","tailwindcss"],"created_at":"2024-11-25T16:23:04.207Z","updated_at":"2026-04-11T01:03:21.861Z","avatar_url":"https://github.com/Chandan8018.png","language":"JavaScript","readme":"\n# React Assignment Project\n\nThis project is a digital marketing agency landing page built using React. The page is styled with Tailwind CSS, Bootstrap, and Flowbite, and includes several interactive features such as a contact form pop-up and an image slider.\n\n## Project Setup\n\n### Prerequisites\n\n- Node.js\n- npm (or yarn)\n\n### Installation\n\n1. Clone the repository:\n\n```bash\ngit clone https://github.com/Chandan8018/Fyle_Assignment.git\ncd Fyle_Assignment\n```\n\n2. Install dependencies:\n\n```bash\nnpm install\n```\n\n### Running the Project\n\nTo start the development server, run:\n\n```bash\nnpm run dev\n```\n\nThis will start the React app at `http://localhost:5173`.\n\n## Technologies Used\n\n- **React**: JavaScript library for building user interfaces\n- **Tailwind CSS**: Utility-first CSS framework\n- **Bootstrap**: CSS framework for responsive design\n- **Flowbite**: Tailwind CSS components library\n\n## Features\n\n### Contact Us Pop-Up Form\n\n- The \"Contact Us\" button is clickable and opens a pop-up form.\n- The form is designed using Flowbite and Tailwind CSS.\n- Upon submitting the form, the data is sent to [getform.io](https://getform.io).\n- Contact Us Empty Pop-Up Page\n![Contact Us Empty Pop-Up Page](./public/empty-popup.png)\n---\n- Contact Us Data Fillup Pop-Up Page\n![Contact Us Data Fillup Pop-Up Page](./public/fill-popup.png)\n---\n- Contact Us Data Send Pop-Up Page\n![Contact Us Data Send Pop-Up Page](./public/dataSend-popup.png)\n---\n- Recived Data on app.getform.io\n![Recived Data on app.getform.io](./public/getData.png)\n---\n\n### Image Slider\n\n- The page includes an image slider with images sliding from left to right.\n- The 3 dots at the bottom right of the slider change accordingly as the images slide.\n- Slider Page\n![Slider Page](./public/slider.png)\n---\n\n## Demo\n- Home Page\n![Home Page](./public/Home.png)\n---\n\n## File Structure\n\n```plaintext\n.\n├── public\n|   └── repo image\n├── src\n│   ├── assets\n│   │   └── all image\n│   ├── components\n│   │   ├── ChooseUs.jsx\n│   │   ├── Company.jsx\n│   │   ├── Feedback.jsx\n│   │   ├── Footer.jsx\n│   │   ├── HeroSection.jsx\n│   │   ├── OurProject.jsx\n│   │   ├── Services.css\n│   │   └── Services.jsx\n│   ├── pages\n│   │   ├── ContactUs.jsx\n│   │   └── Home.jsx\n│   ├── data\n│   │   └── data.js\n│   ├── App.jsx\n│   ├── App.css\n│   ├── index.css\n│   └── main.jsx\n|\n├── .eslintrc.cjs\n├── .gitignore\n├── index.html\n├── package-lock.json\n├── package.json\n├── package.json\n├── postcss.config.js\n├── README.md\n├── tailwind.config.js\n└── vite.config.js\n```\n\n## How to Use\n\n1. **Contact Us Pop-Up Form**:\n    - Click on the \"Contact Us\" button to open the form.\n    - Fill in the details and submit.\n    - The form data will be sent to [getform.io](https://getform.io).\n\n2. **Image Slider**:\n    - The images will slide automatically from left to right.\n    - Use the dots at the bottom right to navigate through the images.\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a pull request or open an issue.\n\n---\n\nFeel free to contact us if you have any questions or suggestions!\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchandan8018%2Ffyle_assignment","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fchandan8018%2Ffyle_assignment","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fchandan8018%2Ffyle_assignment/lists"}