Some checks failed
No response / noResponse (push) Has been cancelled
CI / Continuous releases (push) Has been cancelled
CI / test-dev (macos-latest) (push) Has been cancelled
CI / test-dev (ubuntu-latest) (push) Has been cancelled
CI / test-dev (windows-latest) (push) Has been cancelled
Maintenance / main (push) Has been cancelled
Scorecards supply-chain security / Scorecards analysis (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
26 lines
756 B
JavaScript
26 lines
756 B
JavaScript
import * as React from 'react';
|
|
import Container from '@mui/material/Container';
|
|
import Typography from '@mui/material/Typography';
|
|
import Box from '@mui/material/Box';
|
|
import Button from '@mui/material/Button';
|
|
import ProTip from '../src/ProTip';
|
|
import { Link } from '../src/Link';
|
|
import Copyright from '../src/Copyright';
|
|
|
|
export default function About() {
|
|
return (
|
|
<Container maxWidth="sm">
|
|
<Box sx={{ my: 4 }}>
|
|
<Typography variant="h4" component="h1" sx={{ mb: 2 }}>
|
|
Material UI - Next.js example
|
|
</Typography>
|
|
<Button variant="contained" component={Link} noLinkStyle href="/">
|
|
Go to the main page
|
|
</Button>
|
|
<ProTip />
|
|
<Copyright />
|
|
</Box>
|
|
</Container>
|
|
);
|
|
}
|