import { LogoDark } from "../components/logo"; import { ReactNode } from 'react'; import Home from '@material-ui/icons/Home'; import VideogameAssetIcon from '@material-ui/icons/VideogameAsset'; import ExtensionIcon from '@material-ui/icons/Extension'; import SearchIcon from '@material-ui/icons/Search'; import SettingsIcon from '@material-ui/icons/Settings'; import PersonIcon from '@material-ui/icons/Person'; import ExitToAppOutlinedIcon from '@material-ui/icons/ExitToAppOutlined'; import LockIcon from '@material-ui/icons/Lock'; import GitHubIcon from '@material-ui/icons/GitHub'; function PageLink(props: { icon: ReactNode; href: string; children: string; }) { return {props.icon} {props.children} } export function Footer() { return

4 op een rij

} href="/" children="Home"/> } href="/game" children="Spelen"/> } href="/" children="Puzzels"/> } href="/search" children="Zoeken"/>
} href="/privacy" children="Privacy"/> } href="https://github.com/lonkaars/connect-4" children="Broncode"/>
} href="/settings" children="Instellingen"/> } href="/user" children="Profiel"/> } href="/logout" children="Uitloggen"/>
}