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 FileMenu from "./FileMenu";
|
||||
import ViewMenu from "./ViewMenu";
|
||||
import MoreMenu from "./MoreMenu";
|
||||
|
||||
import BlockmaticText from "@/assets/blockmatic-text.svg?react";
|
||||
|
||||
function Menubar() {
|
||||
return (
|
||||
<DialogProvider>
|
||||
<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">
|
||||
blockmatic
|
||||
</a>
|
||||
<Link to={{ pathname: "/" }} className="px-4 w-32">
|
||||
<BlockmaticText className="h-full w-full" />
|
||||
</Link>
|
||||
|
||||
<FileMenu />
|
||||
<ViewMenu />
|
||||
|
|
|
|||
Loading…
Reference in a new issue