import { Button, Card, Icon } from "@blueprintjs/core"; import { GitHubIcon } from "./custom-icons"; import { useDarkMode } from "./providers/dark-mode-provider"; export const Header = () => { const DarkMode = useDarkMode(); const brandSection = (
); const langSection = (
Brainfuck
); const infoSection = (
); return (
{brandSection} {langSection} {infoSection}
); };