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 { Link as ReactRouterLink } from 'react-router'; import ProTip from '~/components/ProTip'; import Copyright from '~/components/Copyright'; export function meta() { return [ { title: 'About' }, { name: 'description', content: 'About the project', }, ]; } export default function About() { return ( Material UI - Next.js example in TypeScript ); }