24 lines
517 B
TypeScript
24 lines
517 B
TypeScript
import React from "react";
|
|
import { NextPage } from "next";
|
|
import { Mainframe } from "../ui/Mainframe";
|
|
import Head from "next/head";
|
|
import { Header } from "../ui/header";
|
|
|
|
const Index: NextPage = () => {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>Esolang Park</title>
|
|
</Head>
|
|
<div style={{ height: "100%", display: "flex", flexDirection: "column" }}>
|
|
<Header />
|
|
<div style={{ flexGrow: 1 }}>
|
|
<Mainframe />
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
};
|
|
|
|
export default Index;
|