import * as React from "react"; 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, Colors, Icon, Tag } from "@blueprintjs/core"; import { useFeaturesGuide } from "./providers/features-guide-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`; /** Hint text for the language notes button */ const LangNotesHint = (props: { show: boolean }) => { const { isDark } = useDarkMode(); const color = isDark ? Colors.GRAY3 : Colors.GRAY2; return ( Read the esolang notes ); }; type Props = { langId: string; langName: string; renderExecControls: () => React.ReactNode; }; export const Header = (props: Props) => { const DarkMode = useDarkMode(); const featuresGuide = useFeaturesGuide(); const [showNotesHint, setShowNotesHint] = React.useState(true); const brandSection = (
{props.langName}
); const controlsSection = (
{props.renderExecControls()}
); const infoSection = (
setShowNotesHint(false)} title="View the notes for this esolang" >
); return (
{brandSection} {controlsSection} {infoSection}
); };