Remove unused languages

This commit is contained in:
Mark 2025-01-16 14:38:35 -08:00
parent 7a240c13ce
commit 872f5471a5
Signed by: Mark
GPG Key ID: C6D63995FE72FD80
4 changed files with 0 additions and 84 deletions

View File

@ -1,24 +0,0 @@
import React from "react";
import { NextPage } from "next";
import Head from "next/head";
import { Mainframe } from "../../ui/Mainframe";
import LangProvider from "../../languages/chef";
const LANG_ID = "chef";
const LANG_NAME = "Chef";
const IDE: NextPage = () => {
return (
<>
<Head>
<title>{LANG_NAME} | Esolang Park</title>
</Head>
<Mainframe
langId={LANG_ID}
langName={LANG_NAME}
provider={LangProvider}
/>
</>
);
};
export default IDE;

View File

@ -1,24 +0,0 @@
import React from "react";
import { NextPage } from "next";
import Head from "next/head";
import { Mainframe } from "../../ui/Mainframe";
import LangProvider from "../../languages/deadfish";
const LANG_ID = "deadfish";
const LANG_NAME = "Deadfish";
const IDE: NextPage = () => {
return (
<>
<Head>
<title>{LANG_NAME} | Esolang Park</title>
</Head>
<Mainframe
langId={LANG_ID}
langName={LANG_NAME}
provider={LangProvider}
/>
</>
);
};
export default IDE;

View File

@ -1,24 +0,0 @@
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 (
<>
<Head>
<title>{LANG_NAME} | Esolang Park</title>
</Head>
<Mainframe
langId={LANG_ID}
langName={LANG_NAME}
provider={LangProvider}
/>
</>
);
};
export default IDE;

View File

@ -6,17 +6,5 @@
{
"display": "Brainfuck",
"id": "brainfuck"
},
{
"display": "Chef",
"id": "chef"
},
{
"display": "Deadfish",
"id": "deadfish"
},
{
"display": "Shakespeare",
"id": "shakespeare"
}
]