-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Related Issue [Cite any related issue(s) this pull request addresses. If none, simply state "None”] write issue no. here ## Description [Please include a brief description of the changes or features added] ## Type of PR - [ ] Bug fix - [x] Feature enhancement - [ ] Documentation update - [ ] Security enhancement - [ ] Other (specify): _______________ check in issue by entering [X] in boxes ## Screenshots / Videos (if applicable) [Attach any relevant screenshots or videos demonstrating the changes] ## Checklist - [ ] I have performed a self-review of my code. - [ ] I have read and followed the Contribution Guidelines. - [ ] I have tested the changes thoroughly before submitting this pull request. - [ ] I have provided relevant issue numbers, screenshots, and videos after making the changes. - [ ] I have commented my code, particularly in hard-to-understand areas. - [ ] I have followed the code style guidelines of this project. - [ ] I have checked for any existing open issues that my pull request may address. - [ ] I have ensured that my changes do not break any existing functionality. - [ ] Each contributor is allowed to create a maximum of 4 issues per day. This helps us manage and address issues efficiently. - [ ] I have read the resources for guidance listed below. - [ ] I have followed security best practices in my code changes. check in issue by entering [X] in boxes ## Additional Context [Include any additional information or context that might be helpful for reviewers.] ## Contribution Guidelines Thank you for considering contributing to our project! To ensure smooth collaboration and effective contribution management, please adhere to the following guidelines: ### Issue Creation 1. **Limit on Issues:** - Each contributor is allowed to create a maximum of **4 issues per day**. This helps us manage and address issues efficiently. ### Contribution Levels 2. **Basic Contributions:** - This project is primarily focused on documentation. Most of the setup has been completed, so contributors will generally need to work on basic code tasks, such as writing tests. - For these tasks, issues will be assigned the **Easy** label. 3. **Acknowledging Hard Work:** - If a contributor puts in significant effort on a task, the issue will be upgraded to **Medium**. This is our way of recognizing and appreciating extra effort. 4. **Feature Additions and Component Work:** - Contributors working on new features or components using JSX/TSX will be assigned a level based on the complexity and quality of their work. - The more complex and valuable the contribution, the higher the level assigned. ### Level Definitions - **Easy:** - Tasks are straightforward, such as fixing minor bugs, writing tests, or making simple documentation updates. - **Medium:** - Tasks require more effort, such as addressing complex bugs, improving existing features, or making substantial documentation improvements. - **Hard:** - Tasks are highly complex and involve significant new feature development, major refactoring, or extensive contributions to the project’s core components. We look forward to your contributions and appreciate your effort in helping us improve the project!
- Loading branch information
Showing
27 changed files
with
753 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,300 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Spotify Clone</title> | ||
<link rel="stylesheet" href="styles.css"> | ||
<link rel="shortcut icon" href="./images/Spotify_favicon.png" type="image/x-icon"> | ||
</head> | ||
|
||
<body> | ||
|
||
<div class="sidebar"> | ||
<div class="logo"> | ||
<a href=""> | ||
<img src="./images/Spotify Logo.png" alt="Logo"> | ||
</a> | ||
</div> | ||
|
||
<div class="navigation"> | ||
<ul> | ||
<li> | ||
<a href=""> | ||
<span class="fa fa-home"></span> | ||
<span>Home</span> | ||
</a> | ||
</li> | ||
<li> | ||
<a href=""> | ||
<span class="fa fa-search"></span> | ||
<span>Search</span> | ||
</a> | ||
</li> | ||
<li> | ||
<a href=""> | ||
<span class="fa fas fa-book"></span> | ||
<span>Your Library</span> | ||
</a> | ||
</li> | ||
</ul> | ||
</div> | ||
|
||
<div class="navigation"> | ||
<ul> | ||
<li> | ||
<a href=""> | ||
<span class="fa fa-home"></span> | ||
<span>Create Playlist</span> | ||
</a> | ||
</li> | ||
<li> | ||
<a href=""> | ||
<span class="fa fa-search"></span> | ||
<span>Liked Songs</span> | ||
</a> | ||
</li> | ||
|
||
</ul> | ||
</div> | ||
|
||
<div class="policies"> | ||
<ul> | ||
<li> | ||
<a href="">Cookies</a> | ||
</li> | ||
<li> | ||
<a href="">Privacy</a> | ||
</li> | ||
</ul> | ||
</div> | ||
|
||
|
||
</div> | ||
|
||
<div class="main-container"> | ||
<div class="topbar"> | ||
<div class="search"> | ||
<div class="prev-next-buttons" style="height: 35px;width: 350px;"> | ||
<input type="text" placeholder="What do you want to play?" style="height: 35px;width: 350px; color:white;" > | ||
|
||
</div> | ||
</div> | ||
|
||
<div class="navbar"> | ||
<ul> | ||
<li> | ||
<a href="login.html">Sign Up</a> | ||
</li> | ||
</ul> | ||
<button type="button">Login</button> | ||
</div> | ||
</div> | ||
|
||
<div class="spotify-playlists"> | ||
<h2>Popular artists</h2> | ||
|
||
<div class="list"> | ||
<div class="item"> | ||
<img src="./images/Pritam.png" style="border-radius: 50%;"/> | ||
<div class="play"> | ||
<span class="fa fa-play"></span> | ||
</div> | ||
<h4>Pritam</h4> | ||
<p>Artist</p> | ||
</div> | ||
<div class="item"> | ||
<img src="./images/Arijit Singh.png" style="border-radius: 50%;"/> | ||
<div class="play"> | ||
<span class="fa fa-play"></span> | ||
</div> | ||
<h4>Arijit Singh</h4> | ||
<p>Artist</p> | ||
</div> | ||
|
||
<div class="item"> | ||
<img src="./images/Sachin-Jigar.png" style="border-radius: 50%;" /> | ||
<div class="play"> | ||
<span class="fa fa-play"></span> | ||
</div> | ||
<h4>Sachin-Jigar</h4> | ||
<p>Artist</p> | ||
</div> | ||
|
||
<div class="item"> | ||
<img src="./images/A.R. Rahman.png" style="border-radius: 50%;"/> | ||
<div class="play"> | ||
<span class="fa fa-play"></span> | ||
</div> | ||
<h4>A.R. Rahman</h4> | ||
<p>Artist</p> | ||
</div> | ||
|
||
<div class="item"> | ||
<img src="./images/Vishal-Shekhar.png" style="border-radius: 50%;" /> | ||
<div class="play"> | ||
<span class="fa fa-play"></span> | ||
</div> | ||
<h4>Vishal-Shekhar</h4> | ||
<p>Artist</p> | ||
</div> | ||
|
||
|
||
|
||
</div> | ||
</div> | ||
|
||
<div class="spotify-playlists"> | ||
<h2>Focus</h2> | ||
<div class="list"> | ||
<div class="item"> | ||
<img src="./images/Peaceful Piano.jpg" /> | ||
<div class="play"> | ||
<span class="fa fa-play"></span> | ||
</div> | ||
<h4>Peaceful Piano</h4> | ||
<p>Peaceful piano to help you slow down, breath...</p> | ||
</div> | ||
|
||
<div class="item"> | ||
<img src="./images/Deep Focus.jpg" /> | ||
<div class="play"> | ||
<span class="fa fa-play"></span> | ||
</div> | ||
<h4>Deep Focus</h4> | ||
<p>Keep calm and focus with ambient and post-...</p> | ||
</div> | ||
|
||
<div class="item"> | ||
<img src="./images/Instrumental Study.jpg" /> | ||
<div class="play"> | ||
<span class="fa fa-play"></span> | ||
</div> | ||
<h4>Instrumental Study</h4> | ||
<p>Focus with soft study music in the background.</p> | ||
</div> | ||
|
||
|
||
|
||
<div class="item"> | ||
<img src="./images/Focus Flow.jpg" /> | ||
<div class="play"> | ||
<span class="fa fa-play"></span> | ||
</div> | ||
<h4>Focus Flow</h4> | ||
<p>Uptempo instrumental hip hop beats</p> | ||
</div> | ||
|
||
<div class="item"> | ||
<img src="./images/Beats to think to.jpg" /> | ||
<div class="play"> | ||
<span class="fa fa-play"></span> | ||
</div> | ||
<h4>Beats to think to</h4> | ||
<p>Focus with melodic techno and tech house.</p> | ||
</div> | ||
|
||
<div class="item"> | ||
<img src="./images/Reading Adventure.jpg" /> | ||
<div class="play"> | ||
<span class="fa fa-play"></span> | ||
</div> | ||
<h4>Reading Adventure</h4> | ||
<p>Scores and soundtracks for daring quests, epic...</p> | ||
</div> | ||
|
||
<div class="item"> | ||
<img src="./images/Workday Lounge.jpg" /> | ||
<div class="play"> | ||
<span class="fa fa-play"></span> | ||
</div> | ||
<h4>Workday Lounge</h4> | ||
<p>Lounge and chill out music for your workday</p> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="spotify-playlists"> | ||
<h2>Sound of India</h2> | ||
<div class="list"> | ||
<div class="item"> | ||
<img src="./images/The Sound of Mumbai.jpg" /> | ||
<div class="play"> | ||
<span class="fa fa-play"></span> | ||
</div> | ||
<h4>The Sound of Mum...</h4> | ||
<p>The songs that define, unite and distinguish...</p> | ||
</div> | ||
|
||
<div class="item"> | ||
<img src="./images/The Sound of Kolkata.jpg" /> | ||
<div class="play"> | ||
<span class="fa fa-play"></span> | ||
</div> | ||
<h4>The Sound of Kolka...</h4> | ||
<p>The songs that define, unite and distinguish...</p> | ||
</div> | ||
|
||
<div class="item"> | ||
<img src="./images/The Sound of Delhi.jpg" /> | ||
<div class="play"> | ||
<span class="fa fa-play"></span> | ||
</div> | ||
<h4>The Sound of Delhi...</h4> | ||
<p>The songs that define, unite and distinguish...</p> | ||
</div> | ||
|
||
<div class="item"> | ||
<img src="./images/The Sound of Bengaluru.jpg" /> | ||
<div class="play"> | ||
<span class="fa fa-play"></span> | ||
</div> | ||
<h4>The Sound of Ben...</h4> | ||
<p>The songs that define, unite and distinguish...</p> | ||
</div> | ||
|
||
<div class="item"> | ||
<img src="./images/The Sound of Chennai.jpg" /> | ||
<div class="play"> | ||
<span class="fa fa-play"></span> | ||
</div> | ||
<h4>The Sound of Chen...</h4> | ||
<p>The songs that define, unite and distinguish...</p> | ||
</div> | ||
|
||
<div class="item"> | ||
<img src="./images/The Sound of Hyderabad.jpg" /> | ||
<div class="play"> | ||
<span class="fa fa-play"></span> | ||
</div> | ||
<h4>The Sound of Hyde...</h4> | ||
<p>The songs that define, unite and distinguish...</p> | ||
</div> | ||
|
||
|
||
</div> | ||
|
||
<hr> | ||
</div> | ||
|
||
</div> | ||
|
||
<div class="preview"> | ||
<div class="text"> | ||
<h6>Preview of Spotify</h6> | ||
<p>Sign up to get unlimited songs and podcasts with occasional ads. No credit card needed.</p> | ||
</div> | ||
<div class="button"> | ||
<a href="login.html" target="_blank"> | ||
<button type="button">Sign up free</button> | ||
</a> | ||
|
||
</div> | ||
</div> | ||
|
||
|
||
<script src="https://kit.fontawesome.com/ef9a692198.js" crossorigin="anonymous"></script> | ||
</body> | ||
|
||
</html> |
Oops, something went wrong.