Skip to content
Snippets Groups Projects
Select Git revision
  • df0fbc6a677538b0b183df610f1a479b9002e3be
  • main default protected
  • dev protected
  • f-linkahead-rename
  • f-real-id
  • f-filesystem-import
  • f-filesystem-link
  • f-filesystem-directory
  • f-filesystem-core
  • f-filesystem-cleanup
  • f-filesystem-main
  • f-name
  • keep_changes
  • f-permission-checks-2
  • f-mysql8-tests
  • f-retrieve-history
  • t-distinct-parents
  • v8.1.0
  • v8.0.0
  • v7.0.2
  • v7.0.1
  • v7.0.0
  • v6.0.1
  • v6.0.0
  • v5.0.0
  • v4.1.0
  • v4.0.0
  • v3.0
  • v2.0.30
29 results

getInfo.sql

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>
      )
    }