Skip to content

Commit

Permalink
Merge pull request #18 from CinCoders/feature/sel-6
Browse files Browse the repository at this point in the history
feat of disclaimers
  • Loading branch information
dcruzb authored Sep 6, 2023
2 parents 51047bb + d8678ae commit c5c01c9
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
19 changes: 18 additions & 1 deletion src/pages/Home/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,29 @@ function Home() {
return (
<>
<TextContainer>
<Typography variant='h6'>
<Typography variant='h6' sx={{ boxSizing: 'border-box', width: '100%' }}>
{'The top CS conferences are listed in '}
<Link target='_blank' href='https://CSRankings.org'>
CSRankings.org
</Link>
</Typography>
<div>
<Typography variant='body2' style={{ marginTop: '8px', fontStyle: 'italic' }}>
<strong>Disclaimers: </strong>
</Typography>

<Typography variant='body2' style={{ fontStyle: 'italic' }}>
<strong>
We are not responsible for the dates, which were taken directly from the conference websites.
</strong>
</Typography>
<Typography variant='body2' style={{ fontStyle: 'italic' }}>
<strong>
The deadlines indicated are for the submission of full papers. Please visit the event page to check for
earlier dates for registering abstracts.
</strong>
</Typography>
</div>
</TextContainer>
{loading && (
<Box display='flex' justifyContent='center' alignItems='center' flexGrow='1' width='100%'>
Expand Down
1 change: 1 addition & 0 deletions src/pages/Home/styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@ export const FilterContainer = styled('div')({

export const TextContainer = styled('div')({
display: 'flex',
flexWrap: 'wrap',
});

0 comments on commit c5c01c9

Please sign in to comment.