Add proper logo to header
This commit is contained in:
parent
31b0d7b7b8
commit
2c9beef1e6
BIN
ui/assets/logo.png
Normal file
BIN
ui/assets/logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 797 B |
@ -1,4 +1,6 @@
|
|||||||
import { Button, Card, Icon } from "@blueprintjs/core";
|
import { Button, Card, Icon } from "@blueprintjs/core";
|
||||||
|
import Image from "next/image";
|
||||||
|
import logoImg from "./assets/logo.png";
|
||||||
import { GitHubIcon } from "./custom-icons";
|
import { GitHubIcon } from "./custom-icons";
|
||||||
import { useDarkMode } from "./providers/dark-mode-provider";
|
import { useDarkMode } from "./providers/dark-mode-provider";
|
||||||
|
|
||||||
@ -7,8 +9,11 @@ export const Header = ({ langName }: { langName: string }) => {
|
|||||||
|
|
||||||
const brandSection = (
|
const brandSection = (
|
||||||
<div style={{ flex: 1, textAlign: "left" }}>
|
<div style={{ flex: 1, textAlign: "left" }}>
|
||||||
<Button minimal large icon={<Icon icon="code-block" intent="primary" />}>
|
<Button minimal large>
|
||||||
Esolang Park
|
<div style={{ display: "flex", alignItems: "center" }}>
|
||||||
|
<Image src={logoImg} width={20} height={20} />
|
||||||
|
<span style={{ marginLeft: 10 }}>Esolang Park</span>
|
||||||
|
</div>
|
||||||
</Button>
|
</Button>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user