diff --git a/frontend/pages/index.js b/frontend/pages/index.js index 9a62028..7cb7f49 100644 --- a/frontend/pages/index.js +++ b/frontend/pages/index.js @@ -27,6 +27,13 @@ export default function Index() { background: '/interfaces/user-dp.jpg', description: 'User-generated data products shared by members of the LSST community.' + }, + { + title: 'PZ Server Pipelines', + path: '/pz_pipelines', + background: '/interfaces/gamma-ray-burst.jpg', + description: + 'Lorem ipsum dolor sit amet, consectetur adipiscing elit dolor sit amet.' } ] diff --git a/frontend/pages/pz_pipelines.js b/frontend/pages/pz_pipelines.js new file mode 100644 index 0000000..32d7478 --- /dev/null +++ b/frontend/pages/pz_pipelines.js @@ -0,0 +1,15 @@ +import { Typography } from '@mui/material' +import * as React from 'react' +import useStyles from '../styles/pages/pz_pipelines' + +export default function PZPipelines() { + const classes = useStyles() + + return ( +
+ + Coming Soon... + +
+ ) +} diff --git a/frontend/public/interfaces/gamma-ray-burst.jpg b/frontend/public/interfaces/gamma-ray-burst.jpg new file mode 100644 index 0000000..915818a Binary files /dev/null and b/frontend/public/interfaces/gamma-ray-burst.jpg differ diff --git a/frontend/styles/pages/pz_pipelines.js b/frontend/styles/pages/pz_pipelines.js new file mode 100644 index 0000000..ff05157 --- /dev/null +++ b/frontend/styles/pages/pz_pipelines.js @@ -0,0 +1,18 @@ +import { makeStyles } from '@mui/styles' + +const useStyles = makeStyles(theme => ({ + container: { + display: 'flex', + justifyContent: 'center', + alignItems: 'center', + // minHeight: '100vh', + }, + content: { + textAlign: 'center', + }, + message: { + color: theme.palette.text.secondary, + }, +})) + +export default useStyles