Skip to content

Commit

Permalink
Improved styling of Bluejay section #164
Browse files Browse the repository at this point in the history
  • Loading branch information
stylesuxx committed Feb 5, 2022
1 parent 46912e0 commit a36b1ce
Showing 1 changed file with 33 additions and 20 deletions.
53 changes: 33 additions & 20 deletions src/Components/Home/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -215,31 +215,44 @@ function HomeColumnCenter({ onOpenMelodyEditor }) {
Bluejay
</Typography>

<img
alt="Bluejay"
src={bluejay}
/>

<Typography paragraph>
<ReactMarkdown components={{ p: 'span' }}>
{t('bluejayTextLine1')}
</ReactMarkdown>
</Typography>

<Typography paragraph>
<ReactMarkdown components={{ p: 'span' }}>
{t('bluejayTextLine2')}
</ReactMarkdown>
</Typography>
<Grid container>
<Grid
item
xs={9}
>
<Typography paragraph>
<ReactMarkdown components={{ p: 'span' }}>
{t('bluejayTextLine1')}
</ReactMarkdown>
</Typography>

<Typography paragraph>
<ReactMarkdown components={{ p: 'span' }}>
{t('bluejayTextLine2')}
</ReactMarkdown>
</Typography>
</Grid>

<Grid
item
xs={3}
>
<img
alt="Bluejay"
src={bluejay}
/>
</Grid>
</Grid>

<div className="default-btn melody-editor-button">
<button
<Stack sx={{ p: 2 }}>
<Button
onClick={onOpenMelodyEditor}
type="button"
variant="outlined"
>
{t('openMelodyEditor')}
</button>
</div>
</Button>
</Stack>

<Typography paragraph>
<ReactMarkdown components={{ p: 'span' }}>
Expand Down

0 comments on commit a36b1ce

Please sign in to comment.