fix: replace blockmatic text with svg
This commit is contained in:
parent
0a8c5f43d7
commit
2da5ba7af3
1 changed files with 7 additions and 4 deletions
|
|
@ -1,18 +1,21 @@
|
||||||
import { Menubar as UIMenubar } from "@/components/ui/menubar";
|
import { Link } from "react-router";
|
||||||
|
|
||||||
|
import { Menubar as UIMenubar } from "@/components/ui/menubar";
|
||||||
import { DialogProvider } from "@/context/DialogContext";
|
import { DialogProvider } from "@/context/DialogContext";
|
||||||
|
|
||||||
import FileMenu from "./FileMenu";
|
import FileMenu from "./FileMenu";
|
||||||
import ViewMenu from "./ViewMenu";
|
import ViewMenu from "./ViewMenu";
|
||||||
import MoreMenu from "./MoreMenu";
|
import MoreMenu from "./MoreMenu";
|
||||||
|
|
||||||
|
import BlockmaticText from "@/assets/blockmatic-text.svg?react";
|
||||||
|
|
||||||
function Menubar() {
|
function Menubar() {
|
||||||
return (
|
return (
|
||||||
<DialogProvider>
|
<DialogProvider>
|
||||||
<UIMenubar className="rounded-none border-t-0 border-x-0 col-span-2">
|
<UIMenubar className="rounded-none border-t-0 border-x-0 col-span-2">
|
||||||
<a href="https://github.com/trafficlunar/blockmatic" className="ml-4 mr-2">
|
<Link to={{ pathname: "/" }} className="px-4 w-32">
|
||||||
blockmatic
|
<BlockmaticText className="h-full w-full" />
|
||||||
</a>
|
</Link>
|
||||||
|
|
||||||
<FileMenu />
|
<FileMenu />
|
||||||
<ViewMenu />
|
<ViewMenu />
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue