import { Button, Card, Icon } from "@blueprintjs/core"; import Image from "next/image"; import logoImg from "./assets/logo.png"; import { GitHubIcon } from "./custom-icons"; import { useDarkMode } from "./providers/dark-mode-provider"; /** 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`; export const Header = (props: { langId: string; langName: string }) => { const DarkMode = useDarkMode(); const brandSection = (
); const langSection = (
{props.langName}
); const infoSection = (
); return (
{brandSection} {langSection} {infoSection}
); };