[wip] Add Rockstar

This commit is contained in:
Nilay Majorwar
2022-02-02 21:09:00 +05:30
parent 69553b7087
commit 0befc7369a
12 changed files with 537 additions and 2 deletions

27
pages/ide/rockstar.tsx Normal file
View File

@ -0,0 +1,27 @@
// @ts-nocheck
import React from "react";
import { NextPage } from "next";
import Head from "next/head";
import { Mainframe } from "../../ui/Mainframe";
import { Header } from "../../ui/header";
import LangProvider from "../../languages/rockstar";
const LANG_ID = "$LANG_ID";
const LANG_NAME = "Rockstar";
const IDE: NextPage = () => {
return (
<>
<Head>
<title>{LANG_NAME} | Esolang Park</title>
</Head>
<div style={{ height: "100%", display: "flex", flexDirection: "column" }}>
<Header langId={LANG_ID} langName={LANG_NAME} />
<div style={{ flexGrow: 1 }}>
<Mainframe langName={LANG_ID} provider={LangProvider} />
</div>
</div>
</>
);
};
export default IDE;

View File

@ -14,5 +14,9 @@
{
"display": "Deadfish",
"id": "deadfish"
},
{
"display": "Rockstar",
"id": "rockstar"
}
]
]