File size: 1,709 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
import React from "react";
import styled from "styled-components";
import { MdHomeFilled, MdSearch } from "react-icons/md";
import { IoLibrary } from "react-icons/io5";
import Playlist from "./Playlist";
export default function Sidebar() {
return (
<Container>
<div className="top__links">
<div className="logo">
<img
src="https://storage.googleapis.com/pr-newsroom-wp/1/2018/11/Spotify_Logo_RGB_White.png"
alt="spotify"
/>
</div>
<ul>
<li>
<MdHomeFilled />
<span>Home</span>
</li>
<li>
<MdSearch />
<span>Search</span>
</li>
<li>
<IoLibrary />
<span>
<a href="#library">Your Library</a>
</span>
</li>
<hr style={{ width: "80%" }} />
</ul>
</div>
<Playlist />
</Container>
);
}
const Container = styled.div`
background-color: black;
color: #b3b3b3;
display: flex;
flex-direction: column;
height: 100%;
width: 100%;
a {
color: #b3b3b3;
text-decoration: none;
}
.top__links {
display: flex;
flex-direction: column;
.logo {
text-align: center;
margin: 1rem 0;
img {
max-inline-size: 80%;
block-size: auto;
}
}
ul {
list-style-type: none;
display: flex;
flex-direction: column;
gap: 1rem;
padding: 1rem;
li {
display: flex;
gap: 1rem;
}
li,
a {
cursor: pointer;
transition: 0.3s ease-in-out;
&:hover {
color: white;
}
}
}
}
`;
|