"Youtube Clone" is a clone of the home page of YouTube.
You can see the project by clicking at the link: https://youtube-home-clone.vercel.app/
- Plesant UI
- Random generated thumbnails
- Mobile responsive
If you want to contribute to the project, you can follow the steps given below:
-
Star this repository.
-
Fork this repository by clicking on the grey "Fork" button on the top right corner of this page.
-
Clone the forked repository. Go to your GitHub account, open the forked repository, click on the code button and then click the copy to clipboard icon.Open a terminal and run the following command:
git clone "url you just copied"
where "url you just copied" (without the quotation marks) is the url to this repository (your fork of this project).
- Change the repository directory
cd YouTube-Clone
- Create a branch
git switch -c your-new-branch-name
- Make all the necessary changes to the project and follow the given commands.
git status
git add .
git commit -m "Add a message"
- Push the changes to github.
git push origin -u your-branch-name
-
Open a Pull request. If you go to your repository on GitHub, you'll see a "Compare & pull request" button. Click on that button. Then, click on "Create pull request" button.
-
Your changes will be reviewed and merged into the main branch if they seem correct.