Skip to content

Commit

Permalink
feat: minor updates to landing page
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoalee committed Oct 13, 2023
1 parent 1e84332 commit 65cbd9c
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 105 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ const NavDrawer: React.FC<INav> = (props) => {
<ListItemIcon>
<OpenInNewIcon />
</ListItemIcon>
<ListItemText primary="HELP" sx={{ color: 'black' }} />
<ListItemText primary="DOCS" sx={{ color: 'black' }} />
</Button>
</ListItem>
<ListItem>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,7 @@ const NavToolbarStyles: Style = {
},
},
menuItem: {
fontSize: {
md: '0.7rem',
lg: '0.875rem',
xl: '1rem',
},
fontSize: '1rem',
},
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ const NavToolbar: React.FC<INav> = (props) => {
target="_blank"
href="https://neurostuff.github.io/compose-docs/"
>
HELP
DOCS
<OpenInNewIcon sx={{ marginLeft: '8px', fontSize: '1.2rem' }} />
</Button>
<NeurosynthAvatar onLogout={props.onLogout} onLogin={props.onLogin} />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ const NavbarStyles: Style = {
xs: 'block',
md: 'none',
},
marginLeft: {
xs: '40px',
md: '0px',
},
},
mdUp: {
display: {
Expand All @@ -41,11 +45,7 @@ const NavbarStyles: Style = {
cursor: 'pointer',
},
logoText: {
fontSize: {
md: '0.75rem',
lg: '1rem',
xl: '1.25rem',
},
fontSize: '1.5rem',
},
};

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
import SearchIcon from '@mui/icons-material/Search';
import AutoAwesomeMotionIcon from '@mui/icons-material/AutoAwesomeMotion';
import FilterAltIcon from '@mui/icons-material/FilterAlt';
import SettingsIcon from '@mui/icons-material/Settings';
import CheckCircleIcon from '@mui/icons-material/CheckCircle';

export const LOGOS: { logoPath: string; alt: string }[] = [
{
logoPath: '/static/nihlogo.png',
alt: 'NIH Logo',
},
{
logoPath: '/static/utlogo.png',
alt: 'UT Logo',
Expand All @@ -13,10 +11,6 @@ export const LOGOS: { logoPath: string; alt: string }[] = [
logoPath: '/static/mcgilllogo.png',
alt: 'McGill Logo',
},
{
logoPath: '/static/nihlogo.png',
alt: 'NIH Logo',
},
{
logoPath: '/static/fiulogo.png',
alt: 'FIU Logo',
Expand All @@ -34,35 +28,3 @@ export const LOGOS: { logoPath: string; alt: string }[] = [
alt: 'Origami Labs Logo',
},
];

export const STEPS = [
{
icon: <SearchIcon color="primary" />,
title: '(1) Search Studies',
textContent:
'Search titles and abstracts of all articles included in neurosynth, neuroquery, and more.',
},
{
icon: <AutoAwesomeMotionIcon color="primary" />,
title: '(2) Create Studyset',
textContent: 'Create a collection of studies that meet your search criteria.',
},
{
icon: <FilterAltIcon color="primary" />,
title: '(3) Annotate Studyset',
textContent:
'Annotate each analysis within your study-set with experimental details and inclusion criteria.',
},
{
icon: <SettingsIcon color="primary" />,
title: '(4) Specify Meta-Analysis',
textContent:
'Specify which meta-analytic algorithm and its parameters to apply to your study-set through NiMARE.',
},
{
icon: <CheckCircleIcon color="primary" />,
title: '(5) Execute Meta-Analysis',
textContent:
'Execute the prepared meta-analysis online or on your machine. NiMARE is the primary execution engine downloading the study-set, annotation, and meta-analysis specification for reproducible analysis.',
},
];
Original file line number Diff line number Diff line change
@@ -1,17 +1,14 @@
import CheckIcon from '@mui/icons-material/Check';
import CloseIcon from '@mui/icons-material/Close';
import {
Paper,
TableContainer,
TableRow,
TableHead,
Box,
Table,
TableCell,
TableBody,
Box,
TableCell,
TableContainer,
TableHead,
TableRow,
} from '@mui/material';
import CheckCircleIcon from '@mui/icons-material/CheckCircle';
import CancelIcon from '@mui/icons-material/Cancel';
import CheckIcon from '@mui/icons-material/Check';
import CloseIcon from '@mui/icons-material/Close';
import PlatformComparisonTableStyles from './PlatformComparisonTable.styles';

const PlatformComparisonTable: React.FC = (props) => {
Expand Down

This file was deleted.

0 comments on commit 65cbd9c

Please sign in to comment.