mirror of
https://github.com/qwertyforce/scenery.git
synced 2025-05-02 13:39:40 +00:00
25 lines
754 B
TypeScript
25 lines
754 B
TypeScript
import { makeStyles } from '@material-ui/core/styles'
|
|
import Link from './Link'
|
|
const useStyles = makeStyles(() => ({
|
|
footer: {
|
|
display: "flex",
|
|
justifyContent: "center"
|
|
}
|
|
}))
|
|
|
|
export default function Footer() {
|
|
const classes = useStyles()
|
|
return (
|
|
<div>
|
|
<div className={classes.footer}>
|
|
<Link prefetch={false} href={process.env.api_domain}>API </Link>
|
|
<Link prefetch={false} href='/stats'>Stats </Link>
|
|
<Link prefetch={false} href='/tags'>Tags </Link>
|
|
<Link prefetch={false} href='/about'>About </Link>
|
|
</div>
|
|
<div className={classes.footer}>
|
|
Powered by <Link href='https://github.com/qwertyforce/scenery'>scenery</Link>
|
|
</div>
|
|
</div>
|
|
)
|
|
} |