import Image from "next/image"; import logoImg from "./assets/logo.png"; import { GitHubIcon } from "./custom-icons"; import { useDarkMode } from "./providers/dark-mode-provider"; import { Button, Card, Icon, Tag } from "@blueprintjs/core"; /** Link to the project's GitHub repository */ const REPO_LINK = "https://github.com/nilaymaj/esolang-park"; /** Link to the language's README.md page on GitHub */ const NOTES_LINK = (id: string) => `https://github.com/nilaymaj/esolang-park/blob/main/languages/${id}/README.md`; type Props = { langId: string; langName: string; renderExecControls: () => React.ReactNode; }; export const Header = (props: Props) => { const DarkMode = useDarkMode(); const brandSection = (
); const controlsSection = (