Fix stuff, help command

This commit is contained in:
2021-12-17 18:55:00 +01:00
parent a535c5b69a
commit c25a0e34e2
8 changed files with 77 additions and 19 deletions

View File

@ -1,13 +1,17 @@
import type { NextPage } from "next";
import Head from "next/head";
import REPL from "../components/REPL";
import styles from "../styles/Home.module.css";
const Home: NextPage = () => {
return (
return (<>
<Head>
<title>c0ntroller.de</title>
</Head>
<div className={styles.container}>
<REPL />
</div>
);
</>);
};
export default Home;