├── .vscode
└── settings.json
├── public
├── robots.txt
├── logo192.png
├── logo512.png
├── manifest.json
└── index.html
├── screenshots
├── library.PNG
└── player.PNG
├── .github
└── FUNDING.yml
├── src
├── index.js
├── components
│ ├── Song.js
│ ├── Nav.js
│ ├── Library.js
│ ├── LibrarySong.js
│ └── Player.js
├── styles
│ ├── _song.scss
│ ├── _nav.scss
│ ├── app.scss
│ ├── _library.scss
│ └── _player.scss
├── App.js
└── playlist.js
├── .gitignore
├── README.md
├── package.json
└── ReactScripts.md
/.vscode/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "editor.defaultFormatter": "esbenp.prettier-vscode"
3 | }
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | # https://www.robotstxt.org/robotstxt.html
2 | User-agent: *
3 | Disallow:
4 |
--------------------------------------------------------------------------------
/public/logo192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/choubari/React-LoFi-Music-App/HEAD/public/logo192.png
--------------------------------------------------------------------------------
/public/logo512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/choubari/React-LoFi-Music-App/HEAD/public/logo512.png
--------------------------------------------------------------------------------
/screenshots/library.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/choubari/React-LoFi-Music-App/HEAD/screenshots/library.PNG
--------------------------------------------------------------------------------
/screenshots/player.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/choubari/React-LoFi-Music-App/HEAD/screenshots/player.PNG
--------------------------------------------------------------------------------
/.github/FUNDING.yml:
--------------------------------------------------------------------------------
1 | # These are supported funding model platforms
2 |
3 | custom: ['https://www.buymeacoffee.com/choubari']
4 |
--------------------------------------------------------------------------------
/src/index.js:
--------------------------------------------------------------------------------
1 | import React from 'react';
2 | import ReactDOM from 'react-dom';
3 | import App from './App';
4 |
5 | ReactDOM.render(
6 |
7 |
8 | ,
9 | document.getElementById('root')
10 | );
11 |
--------------------------------------------------------------------------------
/src/components/Song.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 |
3 | const Song = ({ currentSong }) => {
4 | return (
5 |
6 |
7 |
{currentSong.name}
8 |
{currentSong.artist}
9 |
10 | );
11 | };
12 |
13 | export default Song;
14 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2 |
3 | # dependencies
4 | /node_modules
5 | /.pnp
6 | .pnp.js
7 |
8 | # testing
9 | /coverage
10 |
11 | # production
12 | /build
13 |
14 | # misc
15 | .DS_Store
16 | .env.local
17 | .env.development.local
18 | .env.test.local
19 | .env.production.local
20 |
21 | npm-debug.log*
22 | yarn-debug.log*
23 | yarn-error.log*
24 |
--------------------------------------------------------------------------------
/src/styles/_song.scss:
--------------------------------------------------------------------------------
1 | .song-container {
2 | min-height: 60vh;
3 | display: flex;
4 | flex-direction: column;
5 | align-items: center;
6 | justify-content: center;
7 | img {
8 | width: 20%;
9 | border-radius: 50%;
10 | }
11 | h2 {
12 | padding: 3rem 1rem 1rem 1rem;
13 | }
14 | h3 {
15 | font-size: 1rem;
16 | }
17 | }
18 | @media screen and (max-width: 768px) {
19 | .song-container {
20 | img {
21 | width: 50%;
22 | }
23 | }
24 | }
25 |
--------------------------------------------------------------------------------
/src/styles/_nav.scss:
--------------------------------------------------------------------------------
1 | nav {
2 | min-height: 10vh;
3 | display: flex;
4 | justify-content: space-around;
5 | align-items: center;
6 | button {
7 | background: transparent;
8 | border: none;
9 | cursor: pointer;
10 | border: 2px solid rgb(65, 65, 65);
11 | padding: 0.5rem;
12 | transition: all 0.3s ease;
13 | &:hover {
14 | background: rgb(65, 65, 65);
15 | color: white;
16 | }
17 | }
18 | }
19 |
20 | @media screen and (max-width: 768px) {
21 | nav {
22 | button {
23 | z-index: 10;
24 | }
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/src/components/Nav.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
3 | import { faMusic, faCompactDisc } from "@fortawesome/free-solid-svg-icons";
4 |
5 | const Nav = ({ libraryStatus, setLibraryStatus }) => {
6 | return (
7 |
8 |
9 | Chill Choub
10 |
11 | setLibraryStatus(!libraryStatus)}>
12 | Library
13 |
14 |
15 | );
16 | };
17 |
18 | export default Nav;
19 |
--------------------------------------------------------------------------------
/public/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "short_name": "React App",
3 | "name": "Create React App Sample",
4 | "icons": [
5 | {
6 | "src": "favicon.ico",
7 | "sizes": "64x64 32x32 24x24 16x16",
8 | "type": "image/x-icon"
9 | },
10 | {
11 | "src": "logo192.png",
12 | "type": "image/png",
13 | "sizes": "192x192"
14 | },
15 | {
16 | "src": "logo512.png",
17 | "type": "image/png",
18 | "sizes": "512x512"
19 | }
20 | ],
21 | "start_url": ".",
22 | "display": "standalone",
23 | "theme_color": "#000000",
24 | "background_color": "#ffffff"
25 | }
26 |
--------------------------------------------------------------------------------
/src/styles/app.scss:
--------------------------------------------------------------------------------
1 | * {
2 | margin: 0;
3 | padding: 0;
4 | box-sizing: border-box;
5 | }
6 | h1,
7 | h2,
8 | h3 {
9 | color: rgb(54, 54, 54);
10 | }
11 | body {
12 | font-family: "Lato", sans-serif;
13 | }
14 | h3,
15 | h4 {
16 | font-weight: 400;
17 | color: rgb(100, 100, 100);
18 | }
19 | .App {
20 | transition: all 0.5s ease;
21 | }
22 | .library-active {
23 | margin-left: 20%;
24 | }
25 |
26 | .footer {
27 | font-weight: 600;
28 | display: inline-block;
29 | width: 100%;
30 | text-align: center;
31 | padding: 2rem;
32 | @media screen and (max-width: 768px) {
33 | padding: 1rem;
34 | }
35 | }
36 |
37 | .link {
38 | text-decoration: none;
39 | }
40 |
41 | @import "./song";
42 | @import "./player";
43 | @import "./library";
44 | @import "./nav";
45 |
--------------------------------------------------------------------------------
/src/components/Library.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import LibrarySong from "./LibrarySong";
3 |
4 | const Library = ({
5 | songs,
6 | setCurrentSong,
7 | audioRef,
8 | isPlaying,
9 | setSongs,
10 | libraryStatus,
11 | }) => {
12 | return (
13 |
14 |
Library
15 |
16 | {songs.map((song) => (
17 |
26 | ))}
27 |
28 |
29 | );
30 | };
31 |
32 | export default Library;
33 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | Chill 💿 Choub
2 |
3 |
4 | 🎵 Your favorite LoFi Music Player🎧
5 | ⭐⭐⭐⭐⭐
6 |
7 |
8 |
9 | - A Responsive Web-App to enjoy and chill Lofi Beats.
10 | - Developed using ReactJS.
11 | - Beautiful styling using SASS.
12 | - Music Collected manually from [ChillHop](https://chillhop.com/) and stored in [playlist.js](/src/playlist.js).
13 | - Deployed on Vercel.
14 | - [Live DEMO](https://chill-choub.vercel.app/)
15 |
16 | ## Screenshots :
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 | ---
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "react-music-app",
3 | "version": "0.1.0",
4 | "private": true,
5 | "dependencies": {
6 | "@fortawesome/fontawesome-svg-core": "^1.2.34",
7 | "@fortawesome/free-solid-svg-icons": "^5.15.2",
8 | "@fortawesome/react-fontawesome": "^0.1.14",
9 | "@testing-library/jest-dom": "^5.11.9",
10 | "@testing-library/react": "^11.2.5",
11 | "@testing-library/user-event": "^12.8.1",
12 | "node-sass": "^5.0.0",
13 | "react": "^17.0.1",
14 | "react-dom": "^17.0.1",
15 | "react-scripts": "4.0.3",
16 | "uuid": "^8.3.2",
17 | "web-vitals": "^1.1.0"
18 | },
19 | "scripts": {
20 | "start": "react-scripts start",
21 | "build": "react-scripts build",
22 | "test": "react-scripts test",
23 | "eject": "react-scripts eject"
24 | },
25 | "eslintConfig": {
26 | "extends": [
27 | "react-app",
28 | "react-app/jest"
29 | ]
30 | },
31 | "browserslist": {
32 | "production": [
33 | ">0.2%",
34 | "not dead",
35 | "not op_mini all"
36 | ],
37 | "development": [
38 | "last 1 chrome version",
39 | "last 1 firefox version",
40 | "last 1 safari version"
41 | ]
42 | }
43 | }
44 |
--------------------------------------------------------------------------------
/src/components/LibrarySong.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | //import { playAudio } from "../utils";
3 |
4 | const LibrarySong = ({
5 | song,
6 | songs,
7 | setCurrentSong,
8 | audioRef,
9 | isPlaying,
10 | setSongs,
11 | }) => {
12 | const songSelectHandler = async () => {
13 | //const selectedSong = songs.filter((state) => state.id === song.id);
14 | await setCurrentSong(song);
15 | const newSongs = songs.map((newSong) => {
16 | if (newSong.id === song.id) {
17 | return {
18 | ...newSong,
19 | active: true,
20 | };
21 | } else {
22 | return {
23 | ...newSong,
24 | active: false,
25 | };
26 | }
27 | });
28 | setSongs(newSongs);
29 | if (isPlaying) audioRef.current.play();
30 | //playAudio(isPlaying, audioRef);
31 | };
32 | return (
33 |
37 |
38 |
39 |
{song.name}
40 | {song.artist}
41 |
42 |
43 | );
44 | };
45 |
46 | export default LibrarySong;
47 |
--------------------------------------------------------------------------------
/src/styles/_library.scss:
--------------------------------------------------------------------------------
1 | .library {
2 | position: fixed;
3 | top: 0;
4 | left: 0;
5 | width: 20rem;
6 | height: 100%;
7 | background: white;
8 | box-shadow: 2px 2px 50px rgb(197, 197, 197);
9 | overflow: scroll;
10 | transform: translateX(-100%);
11 | transition: all 0.5s ease;
12 | opacity: 0;
13 | h2 {
14 | padding: 2rem;
15 | }
16 | }
17 | .library-song {
18 | display: flex;
19 | align-items: center;
20 | padding: 1rem 2rem 1rem 2rem;
21 | cursor: pointer;
22 | transition: background 0.5s ease;
23 | img {
24 | width: 30%;
25 | }
26 | &:hover {
27 | background-color: rgb(223, 215, 255);
28 | }
29 | }
30 | .song-description {
31 | padding-left: 1rem;
32 | h3 {
33 | font-size: 1rem;
34 | }
35 | h4 {
36 | font-size: 0.7rem;
37 | }
38 | }
39 |
40 | * {
41 | scrollbar-width: thin;
42 | scrollbar-color: rgba(155, 155, 155, 0.5) transparent;
43 | }
44 | *::-webkit-scrollbar {
45 | width: 5px;
46 | }
47 | *::-webkit-scrollbar-track {
48 | background: transparent;
49 | }
50 | *::-webkit-scrollbar-thumb {
51 | background-color: rgba(155, 155, 155, 0.5);
52 | border-radius: 20px;
53 | border: transparent;
54 | }
55 | .selected {
56 | background: rgb(146, 199, 248);
57 | }
58 | .active-library {
59 | transform: translateX(0%);
60 | z-index: 1;
61 | opacity: 1;
62 | }
63 | @media screen and (max-width: 768px) {
64 | .library {
65 | width: 100%;
66 | }
67 | }
68 |
--------------------------------------------------------------------------------
/src/styles/_player.scss:
--------------------------------------------------------------------------------
1 | .player {
2 | min-height: 20vh;
3 | display: flex;
4 | flex-direction: column;
5 | align-items: center;
6 | justify-content: space-between;
7 | }
8 |
9 | .time-control {
10 | width: 50%;
11 | display: flex;
12 | input {
13 | width: 100%;
14 | padding: 1rem 0rem;
15 | -webkit-appearance: none;
16 | background: transparent;
17 | cursor: pointer;
18 | }
19 | p {
20 | padding: 1rem;
21 | }
22 | }
23 |
24 | .play-control {
25 | display: flex;
26 | justify-content: space-between;
27 | align-items: center;
28 | width: 30%;
29 | padding: 1rem;
30 | svg {
31 | cursor: pointer;
32 | }
33 | }
34 |
35 | input[type="range"]:focus {
36 | outline: none;
37 | }
38 | input[type="range"]::-webkit-slider-thumb {
39 | -webkit-appearance: none;
40 | height: 16px;
41 | width: 16px;
42 | }
43 | input[type="range"]::-moz-slider-thumb {
44 | -webkit-appearance: none;
45 | background: transparent;
46 | width: 16px;
47 | }
48 |
49 | .track {
50 | width: 100%;
51 | height: 1rem;
52 | position: relative;
53 | margin-top: 1.1rem;
54 | border-radius: 1rem;
55 | overflow: hidden;
56 | }
57 |
58 | .animate-track {
59 | background: rgb(204, 204, 204);
60 | width: 100%;
61 | height: 100%;
62 | position: absolute;
63 |
64 | top: 0;
65 | left: 0;
66 | transform: translateX(0%);
67 | pointer-events: none;
68 | }
69 |
70 | @media screen and (max-width: 768px) {
71 | .time-control {
72 | width: 90%;
73 | }
74 | .play-control {
75 | width: 60%;
76 | }
77 | }
78 |
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
11 |
12 |
16 |
17 |
21 |
22 |
31 | 🎵 Chill 💿 Choub
32 |
33 |
34 | You need to enable JavaScript to run this app.
35 |
36 |
46 |
47 |
48 |
--------------------------------------------------------------------------------
/src/App.js:
--------------------------------------------------------------------------------
1 | import React, { useRef, useState } from "react";
2 | import Player from "./components/Player";
3 | import Song from "./components/Song";
4 | import "./styles/app.scss";
5 | import data from "./playlist";
6 | import Library from "./components/Library";
7 | import Nav from "./components/Nav";
8 |
9 | function App() {
10 | const [songs, setSongs] = useState(data());
11 | const [currentSong, setCurrentSong] = useState(songs[0]);
12 | const [isPlaying, setIsPlaying] = useState(false);
13 | const audioRef = useRef(null);
14 | const [libraryStatus, setLibraryStatus] = useState(false);
15 | const timeUpdateHandler = (e) => {
16 | const current = e.target.currentTime;
17 | const duration = e.target.duration;
18 | const roundedCurrent = Math.round(current);
19 | const roundedDuration = Math.round(duration);
20 | const animationPercentage = Math.round(
21 | (roundedCurrent / roundedDuration) * 100
22 | );
23 | setSongInfo({
24 | ...songInfo,
25 | currentTime: current,
26 | duration,
27 | animationPercentage,
28 | });
29 | };
30 | const [songInfo, setSongInfo] = useState({
31 | currentTime: 0,
32 | duration: 0,
33 | animationPercentage: 0,
34 | });
35 | const songEndHandler = async () => {
36 | let currentIndex = songs.findIndex((song) => song.id === currentSong.id);
37 | await setCurrentSong(songs[(currentIndex + 1) % songs.length]);
38 | if (isPlaying) audioRef.current.play();
39 | };
40 | return (
41 |
42 |
43 |
51 |
52 |
63 |
70 |
71 | Made with ❤️️ by{" "}
72 |
73 | Choubari
74 |
75 |
76 |
77 | );
78 | }
79 |
80 | export default App;
81 |
--------------------------------------------------------------------------------
/ReactScripts.md:
--------------------------------------------------------------------------------
1 | # Getting Started with Create React App
2 |
3 | This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
4 |
5 | ## Available Scripts
6 |
7 | In the project directory, you can run:
8 |
9 | ### `npm start`
10 |
11 | Runs the app in the development mode.\
12 | Open [http://localhost:3000](http://localhost:3000) to view it in the browser.
13 |
14 | The page will reload if you make edits.\
15 | You will also see any lint errors in the console.
16 |
17 | ### `npm test`
18 |
19 | Launches the test runner in the interactive watch mode.\
20 | See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
21 |
22 | ### `npm run build`
23 |
24 | Builds the app for production to the `build` folder.\
25 | It correctly bundles React in production mode and optimizes the build for the best performance.
26 |
27 | The build is minified and the filenames include the hashes.\
28 | Your app is ready to be deployed!
29 |
30 | See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
31 |
32 | ### `npm run eject`
33 |
34 | **Note: this is a one-way operation. Once you `eject`, you can’t go back!**
35 |
36 | If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
37 |
38 | Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.
39 |
40 | You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.
41 |
42 | ## Learn More
43 |
44 | You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
45 |
46 | To learn React, check out the [React documentation](https://reactjs.org/).
47 |
48 | ### Code Splitting
49 |
50 | This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
51 |
52 | ### Analyzing the Bundle Size
53 |
54 | This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
55 |
56 | ### Making a Progressive Web App
57 |
58 | This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
59 |
60 | ### Advanced Configuration
61 |
62 | This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
63 |
64 | ### Deployment
65 |
66 | This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
67 |
68 | ### `npm run build` fails to minify
69 |
70 | This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
71 |
--------------------------------------------------------------------------------
/src/components/Player.js:
--------------------------------------------------------------------------------
1 | import React from "react";
2 | import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";
3 | import {
4 | faPlay,
5 | faPause,
6 | faAngleLeft,
7 | faAngleRight,
8 | } from "@fortawesome/free-solid-svg-icons";
9 | //import { playAudio } from "../utils";
10 |
11 | const Player = ({
12 | currentSong,
13 | setCurrentSong,
14 | setIsPlaying,
15 | isPlaying,
16 | audioRef,
17 | songInfo,
18 | setSongs,
19 | songs,
20 | setSongInfo,
21 | }) => {
22 | const activeLibraryHandler = (nextPrev) => {
23 | const newSongs = songs.map((newSong) => {
24 | if (newSong.id === nextPrev.id) {
25 | return {
26 | ...newSong,
27 | active: true,
28 | };
29 | } else {
30 | return {
31 | ...newSong,
32 | active: false,
33 | };
34 | }
35 | });
36 | setSongs(newSongs);
37 | };
38 |
39 | const playSongHandler = () => {
40 | if (isPlaying) {
41 | audioRef.current.pause();
42 | setIsPlaying(!isPlaying);
43 | } else {
44 | audioRef.current.play();
45 | setIsPlaying(!isPlaying);
46 | }
47 | };
48 |
49 | const getTime = (time) => {
50 | return (
51 | Math.floor(time / 60) + ":" + ("0" + Math.floor(time % 60)).slice(-2)
52 | );
53 | };
54 |
55 | const dragHandler = (e) => {
56 | audioRef.current.currentTime = e.target.value;
57 | setSongInfo({ ...songInfo, currentTime: e.target.value });
58 | };
59 |
60 | const skipTrackHandler = async (direction) => {
61 | let currentIndex = songs.findIndex((song) => song.id === currentSong.id);
62 | if (direction === "skip-forward") {
63 | await setCurrentSong(songs[(currentIndex + 1) % songs.length]);
64 | activeLibraryHandler(songs[(currentIndex + 1) % songs.length]);
65 | }
66 | if (direction === "skip-back") {
67 | if ((currentIndex - 1) % songs.length === -1) {
68 | await setCurrentSong(songs[songs.length - 1]);
69 | activeLibraryHandler(songs[songs.length - 1]);
70 | } else {
71 | await setCurrentSong(songs[(currentIndex - 1) % songs.length]);
72 | activeLibraryHandler(songs[(currentIndex - 1) % songs.length]);
73 | }
74 | }
75 | if (isPlaying) audioRef.current.play();
76 | //playAudio(isPlaying, audioRef);
77 | };
78 |
79 | const trackAnim = {
80 | transform: `translateX(${songInfo.animationPercentage}%)`,
81 | };
82 |
83 | return (
84 |
85 |
86 |
{getTime(songInfo.currentTime)}
87 |
102 |
{songInfo.duration ? getTime(songInfo.duration) : "0:00"}
103 |
104 |
105 | skipTrackHandler("skip-back")}
107 | className="skip-back"
108 | size="2x"
109 | icon={faAngleLeft}
110 | />
111 |
117 | skipTrackHandler("skip-forward")}
119 | className="skip-forward"
120 | size="2x"
121 | icon={faAngleRight}
122 | />
123 |
124 |
125 | );
126 | };
127 |
128 | export default Player;
129 |
--------------------------------------------------------------------------------
/src/playlist.js:
--------------------------------------------------------------------------------
1 | import { v4 as uuidv4 } from "uuid";
2 | function chillHop() {
3 | return [
4 | {
5 | name: "Oasis",
6 | cover:
7 | "https://chillhop.com/wp-content/uploads/2020/11/f78c39b4bb6313ddd0354bef896c591bfb490ff8-1024x1024.jpg",
8 | artist: "Makzo",
9 | audio: "https://mp3.chillhop.com/serve.php/?mp3=11768",
10 | color: ["#47609D", "#E88774"],
11 | id: uuidv4(),
12 | active: true,
13 | },
14 | {
15 | name: "Beaver Creek",
16 | cover:
17 | "https://chillhop.com/wp-content/uploads/2020/09/0255e8b8c74c90d4a27c594b3452b2daafae608d-1024x1024.jpg",
18 | artist: "Aso, Middle School, Aviino",
19 | audio: "https://mp3.chillhop.com/serve.php/?mp3=10075",
20 | color: ["#205950", "#2ab3bf"],
21 | id: uuidv4(),
22 | active: false,
23 | },
24 | {
25 | name: "Daylight",
26 | cover:
27 | "https://chillhop.com/wp-content/uploads/2020/07/ef95e219a44869318b7806e9f0f794a1f9c451e4-1024x1024.jpg",
28 | artist: "Aiguille",
29 | audio: "https://mp3.chillhop.com/serve.php/?mp3=9272",
30 | color: ["#EF8EA9", "#ab417f"],
31 | id: uuidv4(),
32 | active: false,
33 | },
34 | {
35 | name: "Keep Going",
36 | cover:
37 | "https://chillhop.com/wp-content/uploads/2020/07/ff35dede32321a8aa0953809812941bcf8a6bd35-1024x1024.jpg",
38 | artist: "Swørn",
39 | audio: "https://mp3.chillhop.com/serve.php/?mp3=9222",
40 | color: ["#CD607D", "#c94043"],
41 | id: uuidv4(),
42 | active: false,
43 | },
44 | {
45 | name: "Going Back",
46 | cover:
47 | "https://chillhop.com/wp-content/uploads/2020/10/737bb830d34592344eb4a2a1d2c006cdbfc811d9-1024x1024.jpg",
48 | artist: "Swørn",
49 | audio: "https://mp3.chillhop.com/serve.php/?mp3=10310",
50 | color: ["#335561", "#3A393E"],
51 | id: uuidv4(),
52 | active: false,
53 | },
54 | {
55 | name: "Bliss",
56 | cover:
57 | "https://chillhop.com/wp-content/uploads/2020/09/5bff1a6f1bd0e2168d29b4c841b811598135e457-1024x1024.jpg",
58 | artist: "Misha, Jussi Halme",
59 | audio: "https://mp3.chillhop.com/serve.php/?mp3=9248",
60 | color: ["#2A416D", "#E98087"],
61 | id: uuidv4(),
62 | active: false,
63 | },
64 | {
65 | name: "Growing Apart",
66 | cover:
67 | "https://chillhop.com/wp-content/uploads/2020/07/ff35dede32321a8aa0953809812941bcf8a6bd35-1024x1024.jpg",
68 | artist: "Swørn",
69 | audio: "https://mp3.chillhop.com/serve.php/?mp3=9219",
70 | color: ["#BD3D76", "#551853"],
71 | id: uuidv4(),
72 | active: false,
73 | },
74 | {
75 | name: "Sails",
76 | cover:
77 | "https://chillhop.com/wp-content/uploads/2020/06/49f6e32ca521fbad46a1b281e3893cf6254bf11d-1024x1024.jpg",
78 | artist: "Strehlow, Aylior",
79 | audio: "https://mp3.chillhop.com/serve.php/?mp3=9355",
80 | color: ["#F2C5AB", "#BE5853"],
81 | id: uuidv4(),
82 | active: false,
83 | },
84 | {
85 | name: "Cruisin'",
86 | cover:
87 | "https://chillhop.com/wp-content/uploads/2020/07/8404541e3b694d16fd79433b142ed910f36764dd-1024x1024.jpg",
88 | artist: "Cloudchord, G Mills",
89 | audio: "https://mp3.chillhop.com/serve.php/?mp3=8200",
90 | color: ["#FF194A", "#41B3B3"],
91 | id: uuidv4(),
92 | active: false,
93 | },
94 | {
95 | name: "Maple Leaf Pt.2",
96 | cover:
97 | "https://chillhop.com/wp-content/uploads/2020/09/2899f7cc22ab12e17d0119819aac3ca9dbab46e6-1024x1024.jpg",
98 | artist: "Philanthrope",
99 | audio: "https://mp3.chillhop.com/serve.php/?mp3=10243",
100 | color: ["#CA483B", "#682C24"],
101 | id: uuidv4(),
102 | active: false,
103 | },
104 | {
105 | name: "Nightfall",
106 | cover:
107 | "https://chillhop.com/wp-content/uploads/2020/07/ef95e219a44869318b7806e9f0f794a1f9c451e4-1024x1024.jpg",
108 | artist: "Aiguille",
109 | audio: "https://mp3.chillhop.com/serve.php/?mp3=9148",
110 | color: ["#EF8EA9", "#ab417f"],
111 | id: uuidv4(),
112 | active: false,
113 | },
114 | {
115 | name: "Reflection",
116 | cover:
117 | "https://chillhop.com/wp-content/uploads/2020/07/ff35dede32321a8aa0953809812941bcf8a6bd35-1024x1024.jpg",
118 | artist: "Swørn",
119 | audio: "https://mp3.chillhop.com/serve.php/?mp3=9228",
120 | color: ["#CD607D", "#c94043"],
121 | id: uuidv4(),
122 | active: false,
123 | },
124 | {
125 | name: "Leaving For Good",
126 | cover:
127 | "https://chillhop.com/wp-content/uploads/2020/07/7a84488fd87082302cb69c05262f2f3f87e93018-1024x1024.jpg",
128 | artist: "Hanz",
129 | audio: "https://mp3.chillhop.com/serve.php/?mp3=8264",
130 | color: ["#90B4AA", "#F2AE87"],
131 | id: uuidv4(),
132 | active: false,
133 | },
134 | {
135 | name: "Eastway",
136 | cover:
137 | "https://chillhop.com/wp-content/uploads/2020/07/c572841e8431cebc120dffed4f92119f723dd954-1024x1024.jpg",
138 | artist: "Dontcry, Nokiaa",
139 | audio: "https://mp3.chillhop.com/serve.php/?mp3=9071",
140 | color: ["#B442A1", "#F54F7A"],
141 | id: uuidv4(),
142 | active: false,
143 | },
144 | {
145 | name: "Wake up",
146 | cover:
147 | "https://chillhop.com/wp-content/uploads/2020/07/2c3bd458bfb0713c89f991d1ce469523e95e3b53-1024x1024.jpg",
148 | artist: "Evil Needle",
149 | audio: "https://mp3.chillhop.com/serve.php/?mp3=8285",
150 | color: ["#A35CA0", "#EE8D66"],
151 | id: uuidv4(),
152 | active: false,
153 | },
154 | {
155 | name: "Under the City Stars",
156 | cover:
157 | "https://chillhop.com/wp-content/uploads/2020/09/0255e8b8c74c90d4a27c594b3452b2daafae608d-1024x1024.jpg",
158 | artist: "Aso, Middle School, Aviino",
159 | audio: "https://mp3.chillhop.com/serve.php/?mp3=10074",
160 | color: ["#205950", "#2ab3bf"],
161 | id: uuidv4(),
162 | active: false,
163 | },
164 | {
165 | name: "Velocities",
166 | cover: "https://i.scdn.co/image/ab67616d0000b2734fb6a52430e65dbc6c593faf",
167 | artist: "Sleepy Fish",
168 | audio: "https://mp3.chillhop.com/serve.php/?mp3=3524",
169 | color: ["#74c7b4", "#1d6d92"],
170 | id: uuidv4(),
171 | active: false,
172 | },
173 | {
174 | name: "Deeper",
175 | cover:
176 | "https://chillhop.com/wp-content/uploads/2020/10/23fdd99adc3e16abcb67b004ea3e748ebf433a49-1024x1024.jpg",
177 | artist: "Aviino",
178 | audio: "https://mp3.chillhop.com/serve.php/?mp3=10460",
179 | color: ["#C668B2", "#4D92D7"],
180 | id: uuidv4(),
181 | active: false,
182 | },
183 |
184 | //ADD MORE HERE
185 | ];
186 | }
187 |
188 | export default chillHop;
189 |
--------------------------------------------------------------------------------