├── .gitignore ├── .vscode └── settings.json ├── README.md ├── package.json ├── public ├── _redirects ├── favicon.ico └── index.html └── src ├── App.js ├── PrivateRoute.js ├── components ├── AudioPlayer │ ├── index.jsx │ └── styles.module.scss ├── Button │ ├── index.jsx │ └── styles.module.scss ├── Inputs │ ├── Checkbox │ │ ├── index.jsx │ │ └── styles.module.scss │ ├── FileInput │ │ ├── index.jsx │ │ └── styles.module.scss │ ├── Radio │ │ ├── index.jsx │ │ └── styles.module.scss │ ├── Select │ │ ├── index.jsx │ │ └── styles.module.scss │ └── TextField │ │ ├── index.jsx │ │ └── styles.module.scss ├── Like │ ├── index.jsx │ └── styles.module.scss ├── Navbar │ ├── index.jsx │ └── styles.module.scss ├── Playlist │ ├── index.jsx │ └── styles.module.scss ├── PlaylistMenu │ ├── index.jsx │ └── styles.module.scss ├── PlaylistModel │ ├── index.jsx │ └── styles.module.scss ├── Sidebar │ ├── index.jsx │ └── styles.module.scss └── Song │ ├── index.jsx │ └── styles.module.scss ├── firebase.js ├── global.css ├── images ├── black_logo.svg ├── like.jpg ├── music.png ├── record-arm.svg ├── record.svg ├── rock.jpg └── white_logo.svg ├── index.js ├── pages ├── Home │ ├── index.jsx │ └── styles.module.scss ├── Library │ ├── index.jsx │ └── styles.module.scss ├── LikedSongs │ ├── index.jsx │ └── styles.module.scss ├── Login │ ├── index.jsx │ └── styles.module.scss ├── Main │ ├── index.jsx │ └── styles.module.scss ├── NotFound │ ├── index.jsx │ └── styles.module.scss ├── Playlist │ ├── index.jsx │ └── styles.module.scss ├── Profile │ ├── index.jsx │ └── styles.module.scss ├── Search │ ├── index.jsx │ └── styles.module.scss └── SignUp │ ├── index.jsx │ └── styles.module.scss └── redux ├── audioPlayer └── index.js ├── authSlice ├── apiCalls.js └── index.js ├── axiosInstance.js ├── playListSlice ├── apiCalls.js └── index.js ├── store.js └── userSlice ├── apiCalls.js └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | I will add read me wait 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/package.json -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/App.js -------------------------------------------------------------------------------- /src/PrivateRoute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/PrivateRoute.js -------------------------------------------------------------------------------- /src/components/AudioPlayer/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/components/AudioPlayer/index.jsx -------------------------------------------------------------------------------- /src/components/AudioPlayer/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/components/AudioPlayer/styles.module.scss -------------------------------------------------------------------------------- /src/components/Button/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/components/Button/index.jsx -------------------------------------------------------------------------------- /src/components/Button/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/components/Button/styles.module.scss -------------------------------------------------------------------------------- /src/components/Inputs/Checkbox/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/components/Inputs/Checkbox/index.jsx -------------------------------------------------------------------------------- /src/components/Inputs/Checkbox/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/components/Inputs/Checkbox/styles.module.scss -------------------------------------------------------------------------------- /src/components/Inputs/FileInput/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/components/Inputs/FileInput/index.jsx -------------------------------------------------------------------------------- /src/components/Inputs/FileInput/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/components/Inputs/FileInput/styles.module.scss -------------------------------------------------------------------------------- /src/components/Inputs/Radio/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/components/Inputs/Radio/index.jsx -------------------------------------------------------------------------------- /src/components/Inputs/Radio/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/components/Inputs/Radio/styles.module.scss -------------------------------------------------------------------------------- /src/components/Inputs/Select/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/components/Inputs/Select/index.jsx -------------------------------------------------------------------------------- /src/components/Inputs/Select/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/components/Inputs/Select/styles.module.scss -------------------------------------------------------------------------------- /src/components/Inputs/TextField/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/components/Inputs/TextField/index.jsx -------------------------------------------------------------------------------- /src/components/Inputs/TextField/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/components/Inputs/TextField/styles.module.scss -------------------------------------------------------------------------------- /src/components/Like/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/components/Like/index.jsx -------------------------------------------------------------------------------- /src/components/Like/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/components/Like/styles.module.scss -------------------------------------------------------------------------------- /src/components/Navbar/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/components/Navbar/index.jsx -------------------------------------------------------------------------------- /src/components/Navbar/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/components/Navbar/styles.module.scss -------------------------------------------------------------------------------- /src/components/Playlist/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/components/Playlist/index.jsx -------------------------------------------------------------------------------- /src/components/Playlist/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/components/Playlist/styles.module.scss -------------------------------------------------------------------------------- /src/components/PlaylistMenu/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/components/PlaylistMenu/index.jsx -------------------------------------------------------------------------------- /src/components/PlaylistMenu/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/components/PlaylistMenu/styles.module.scss -------------------------------------------------------------------------------- /src/components/PlaylistModel/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/components/PlaylistModel/index.jsx -------------------------------------------------------------------------------- /src/components/PlaylistModel/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/components/PlaylistModel/styles.module.scss -------------------------------------------------------------------------------- /src/components/Sidebar/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/components/Sidebar/index.jsx -------------------------------------------------------------------------------- /src/components/Sidebar/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/components/Sidebar/styles.module.scss -------------------------------------------------------------------------------- /src/components/Song/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/components/Song/index.jsx -------------------------------------------------------------------------------- /src/components/Song/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/components/Song/styles.module.scss -------------------------------------------------------------------------------- /src/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/firebase.js -------------------------------------------------------------------------------- /src/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/global.css -------------------------------------------------------------------------------- /src/images/black_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/images/black_logo.svg -------------------------------------------------------------------------------- /src/images/like.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/images/like.jpg -------------------------------------------------------------------------------- /src/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/images/music.png -------------------------------------------------------------------------------- /src/images/record-arm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/images/record-arm.svg -------------------------------------------------------------------------------- /src/images/record.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/images/record.svg -------------------------------------------------------------------------------- /src/images/rock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/images/rock.jpg -------------------------------------------------------------------------------- /src/images/white_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/images/white_logo.svg -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/index.js -------------------------------------------------------------------------------- /src/pages/Home/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/pages/Home/index.jsx -------------------------------------------------------------------------------- /src/pages/Home/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/pages/Home/styles.module.scss -------------------------------------------------------------------------------- /src/pages/Library/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/pages/Library/index.jsx -------------------------------------------------------------------------------- /src/pages/Library/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/pages/Library/styles.module.scss -------------------------------------------------------------------------------- /src/pages/LikedSongs/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/pages/LikedSongs/index.jsx -------------------------------------------------------------------------------- /src/pages/LikedSongs/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/pages/LikedSongs/styles.module.scss -------------------------------------------------------------------------------- /src/pages/Login/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/pages/Login/index.jsx -------------------------------------------------------------------------------- /src/pages/Login/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/pages/Login/styles.module.scss -------------------------------------------------------------------------------- /src/pages/Main/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/pages/Main/index.jsx -------------------------------------------------------------------------------- /src/pages/Main/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/pages/Main/styles.module.scss -------------------------------------------------------------------------------- /src/pages/NotFound/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/pages/NotFound/index.jsx -------------------------------------------------------------------------------- /src/pages/NotFound/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/pages/NotFound/styles.module.scss -------------------------------------------------------------------------------- /src/pages/Playlist/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/pages/Playlist/index.jsx -------------------------------------------------------------------------------- /src/pages/Playlist/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/pages/Playlist/styles.module.scss -------------------------------------------------------------------------------- /src/pages/Profile/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/pages/Profile/index.jsx -------------------------------------------------------------------------------- /src/pages/Profile/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/pages/Profile/styles.module.scss -------------------------------------------------------------------------------- /src/pages/Search/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/pages/Search/index.jsx -------------------------------------------------------------------------------- /src/pages/Search/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/pages/Search/styles.module.scss -------------------------------------------------------------------------------- /src/pages/SignUp/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/pages/SignUp/index.jsx -------------------------------------------------------------------------------- /src/pages/SignUp/styles.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/pages/SignUp/styles.module.scss -------------------------------------------------------------------------------- /src/redux/audioPlayer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/redux/audioPlayer/index.js -------------------------------------------------------------------------------- /src/redux/authSlice/apiCalls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/redux/authSlice/apiCalls.js -------------------------------------------------------------------------------- /src/redux/authSlice/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/redux/authSlice/index.js -------------------------------------------------------------------------------- /src/redux/axiosInstance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/redux/axiosInstance.js -------------------------------------------------------------------------------- /src/redux/playListSlice/apiCalls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/redux/playListSlice/apiCalls.js -------------------------------------------------------------------------------- /src/redux/playListSlice/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/redux/playListSlice/index.js -------------------------------------------------------------------------------- /src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/redux/store.js -------------------------------------------------------------------------------- /src/redux/userSlice/apiCalls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/redux/userSlice/apiCalls.js -------------------------------------------------------------------------------- /src/redux/userSlice/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyberW0lves/spotify/HEAD/src/redux/userSlice/index.js --------------------------------------------------------------------------------