Skip to content

Commit

Permalink
Implementation of the new card and page 'Pz-Server-Pipelines'
Browse files Browse the repository at this point in the history
  • Loading branch information
jandsonrj committed Aug 8, 2023
1 parent bd5ed87 commit 05e7561
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 0 deletions.
7 changes: 7 additions & 0 deletions frontend/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.'
}
]

Expand Down
15 changes: 15 additions & 0 deletions frontend/pages/pz_pipelines.js
Original file line number Diff line number Diff line change
@@ -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 (
<div className={classes.container}>
<Typography variant="h5" className={classes.message}>
Coming Soon...
</Typography>
</div>
)
}
Binary file added frontend/public/interfaces/gamma-ray-burst.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions frontend/styles/pages/pz_pipelines.js
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 05e7561

Please sign in to comment.