import React from "react"; import { NextPage } from "next"; import Head from "next/head"; import { Mainframe } from "../../ui/Mainframe"; import LangProvider from "../../languages/shakespeare"; const LANG_ID = "shakespeare"; const LANG_NAME = "Shakespeare"; const IDE: NextPage = () => { return ( <> {LANG_NAME} | Esolang Park ); }; export default IDE;