Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions src/images/lastfm.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/images/spotify.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
45 changes: 37 additions & 8 deletions src/routes/pages/login/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@ import React from 'react'

import Box from '@material-ui/core/Box'
import Container from '@material-ui/core/Container'
import Typography from '@material-ui/core/Typography';
import Typography from '@material-ui/core/Typography'

import Textmark from "../../../images/textmark@72.png"
import Textmark from '../../../images/textmark@72.png'

import SpotifyLogo from '../../../images/spotify.png'
import LastFMLogo from '../../../images/lastfm.svg'

import ConnectButton from '../../../components/BtnConnectToSpotify'

Expand All @@ -23,13 +26,39 @@ export default function () {
alignItems='center'
justifyContent='center'
>
<img
src={Textmark}
width='480px'
alt="Splitify"
/>
<Typography variant="h6" paragraph={true} style={{marginTop: "5px", color: "#383735"}} >Your last Spotify playlist management tool</Typography>
<img src={Textmark} width='480px' alt='Splitify' />
<Typography
variant='h6'
paragraph={true}
style={{ marginTop: '5px', color: '#383735' }}
>
Your last Spotify playlist management tool
</Typography>
<ConnectButton />

<div style={{ marginTop: 20, textAlign: 'center' }}>
<h3>Powered by</h3>
<div
style={{
display: 'flex',
flexDirection: 'column',
alignItems: 'center'
}}
>
<img
height='50px'
width='50px'
alt='Spotify Logo'
src={SpotifyLogo}
/>
<img
height='50px'
width='100%'
alt='Last.fm Logo'
src={LastFMLogo}
/>
</div>
</div>
</Box>
</Container>
)
Expand Down