30 lines
742 B
TypeScript
30 lines
742 B
TypeScript
// @ts-nocheck
|
|
import { NextPage } from "next";
|
|
import { Typography, Box, Button, Grid, Link } from "@material-ui/core";
|
|
import { FC, useEffect } from "react";
|
|
import { useRouter } from "next/router";
|
|
|
|
export const RedirectToAdmin: FC = ({ children }) => {
|
|
const router = useRouter();
|
|
useEffect(() => {
|
|
router.push("/admin");
|
|
});
|
|
|
|
return <>{children}</>;
|
|
};
|
|
|
|
const Home: NextPage = () => (
|
|
<Box>
|
|
<Typography variant="h3">Metamigo</Typography>
|
|
<Grid container justifyContent="space-around" style={{ padding: 60 }}>
|
|
<Grid item>
|
|
<Link href="/admin">
|
|
<Button variant="contained">Admin</Button>
|
|
<RedirectToAdmin />
|
|
</Link>
|
|
</Grid>
|
|
</Grid>
|
|
</Box>
|
|
);
|
|
|
|
export default Home;
|