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