Skip to content
Snippets Groups Projects
Select Git revision
  • f292404f51c4a4bf4e091e2330188d197e2d5c9f
  • main default protected
  • f-sss4grpc
  • dev
  • 108-implement-rpc-call-for-server-side-scripting
  • f-windows-conan-create
  • f-to-string
  • f-update-requirements
  • f-related-projects
  • f-role
  • f-remote-path
  • f-rel-path
  • f-consol-message
  • v0.3.0
  • v0.2.2
  • v0.2.1
  • v0.2.0
  • v0.1.2
  • v0.1.1
  • v0.1
  • v0.0.19
  • v0.0.18
  • v0.0.16
  • v0.0.15
  • v0.0.10
  • v0.0.9
  • v0.0.8
  • v0.0.7
  • v0.0.6
  • v0.0.5
  • v0.0.4
  • v0.0.3
  • v0.0.2
33 results

CMakeLists.txt

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    ContentArea.tsx 2.18 KiB
    import * as React from 'react'
    import { styled } from '@mui/material/styles'
    import Grid from '@mui/material/Grid'
    import Paper from '@mui/material/Paper'
    import Box from '@mui/material/Box'
    import QueryPanel from './header/QueryPanel'
    import Content from 'src/components/Content'
    import Typography from '@mui/material/Typography'
    import Divider from '@mui/material/Divider'
    
    const Item = styled(Paper)(({ theme }) => ({
      backgroundColor: theme.palette.mode === 'dark' ? '#1A2027' : '#fff',
      ...theme.typography.body2,
      padding: theme.spacing(2),
      textAlign: 'center',
      color: theme.palette.text.secondary
    }))
    
    export default function RowAndColumnSpacing () {
      return (
        <Box alignItems="center">
          <Grid container spacing={2} columns={10} justifyContent="center" alignItems="center" marginTop={2}>
            <Grid item xs={6}>
              <Item>
              <Typography variant="h3" gutterBottom marginTop={2}>
                  Welcome to the FDO Manager
              </Typography><br/>
              <Typography variant="body1" gutterBottom>
                  The FDO Manager allows you to browse FDOs, create FDOs and much more and is
                  part of the <a href="https://fdo-one.org/">FDO One project</a>.
                  <br/>
                  One key feature of FDOs is that they
                  are identified via a persistent identifier (PID).
                  <br/>
                  <br/>
                  You are interested to look at a specific FDO? Just enter the PID below!
                </Typography><br/>
                  <QueryPanel/><br/><br/>
                   <Divider /><br/><br/>
                   <Typography variant="body1" gutterBottom>
                    Or just start from the overview of the FDO Manager by clicking here:
                  </Typography><br/>
                <Typography variant="button" display="block" gutterBottom fontSize={19}>
                  Enter FDO Manager
                </Typography>
              </Item>
            </Grid>
          </Grid>
    
          <Grid container spacing={2} columns={20} justifyContent="center" alignItems="center" marginTop={2}>
            <Grid item xs={6}>
              <Item><Content/></Item>
            </Grid>
            <Grid item xs={6}>
              <Item><Content/></Item>
            </Grid>
          </Grid>
        </Box>
      )
    }