hello-user-page.js 500 B

123456789101112131415
  1. import {LogoLarge} from "../header";
  2. import musicLoad from '../../music-load.png'
  3. export const MusicLoad = () =>
  4. <><img className='music-load-image' src={musicLoad} alt='musicLoad'/></>
  5. export const HelloUserPage = () =>
  6. <div className='hello-user-page'>
  7. <h3>Загрузите музыку в плейлисты и слушайте любимые композиции</h3>
  8. <div className='hello-column'>
  9. <LogoLarge/>
  10. <MusicLoad />
  11. </div>
  12. </div>