Remove notes

This commit is contained in:
2025-01-16 11:52:35 -08:00
parent 5d4921432a
commit dca4889e74
2 changed files with 5 additions and 63 deletions

View File

@ -7,14 +7,8 @@ import { Button, Card, Colors, Icon, Text } from "@blueprintjs/core";
import Link from "next/link";
import { useDarkMode } from "../ui/providers/dark-mode-provider";
import LANGUAGES from "./languages.json";
import { GitHubIcon } from "../ui/custom-icons";
import { Providers } from "../ui/providers";
const REPO_URL = "https://github.com/nilaymaj/esolang-park";
const WIKI_URL = REPO_URL + "/wiki";
const GUIDE_URL = REPO_URL + "/wiki/LP-Getting-Started";
const ISSUE_URL = REPO_URL + "/issues/new";
const styles = {
topPanel: {
position: "absolute" as "absolute",
@ -64,16 +58,10 @@ const Index: NextPageWithLayout = () => {
<div style={styles.topPanel}>
<Button
minimal
title="Toggle between dark and light mode"
title="Toggle light mode"
icon={<Icon icon={DarkMode.isDark ? "flash" : "moon"} />}
onClick={DarkMode.toggleDark}
/>
<a href={WIKI_URL} title="Visit the project's wiki">
<Button minimal icon={<Icon icon="book" />} />
</a>
<a href={REPO_URL} title="Visit the GitHub repository">
<Button minimal icon={<Icon icon={<GitHubIcon />} />} />
</a>
</div>
{/* Container for center content */}
<div style={{ ...styles.rootContainer, backgroundColor }}>
@ -86,9 +74,7 @@ const Index: NextPageWithLayout = () => {
<h1>Esolang Park</h1>
</Text>
</div>
<Text>
<p>An online visual debugger for esoteric languages</p>
</Text>
{/* Language cards */}
<div style={styles.langsContainer}>
{LANGUAGES.map(({ display, id }) => (
@ -101,14 +87,6 @@ const Index: NextPageWithLayout = () => {
</Link>
))}
</div>
{/* "More esolangs" section */}
<Text>
<p>
Need support for your favorite esolang? Submit an{" "}
<a href={ISSUE_URL}>issue on GitHub</a> (or{" "}
<a href={GUIDE_URL}>implement it yourself</a>!)
</p>
</Text>
</div>
</>
);