frontpage/pages/index.tsx

18 lines
356 B
TypeScript
Raw Normal View History

2021-12-14 23:45:00 +01:00
import type { NextPage } from "next";
2021-12-17 18:55:00 +01:00
import Head from "next/head";
2021-12-15 18:56:32 +01:00
import REPL from "../components/REPL";
2021-12-16 01:03:54 +01:00
import styles from "../styles/Home.module.css";
2021-11-30 23:48:54 +01:00
const Home: NextPage = () => {
2021-12-17 18:55:00 +01:00
return (<>
<Head>
<title>c0ntroller.de</title>
</Head>
2021-12-16 01:03:54 +01:00
<div className={styles.container}>
<REPL />
</div>
2021-12-17 18:55:00 +01:00
</>);
2021-12-14 23:45:00 +01:00
};
2021-11-30 23:48:54 +01:00
2021-12-14 23:45:00 +01:00
export default Home;