Skip to content

Commit

Permalink
signature added
Browse files Browse the repository at this point in the history
  • Loading branch information
Diivvuu committed Oct 17, 2024
1 parent 9c7b3c6 commit 52cd1ec
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions src/app/workspace/[workspaceId]/toolbar.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { Hint } from "@/components/hint";
import { Button } from "@/components/ui/button";
import {
CommandDialog,
Expand Down Expand Up @@ -74,9 +75,20 @@ const Toolbar = () => {
</CommandDialog>
</div>
<div className="ml-auto flex-1 flex items-center justify-end">
<Button variant="transparent" className="iconSm">
<Info className="size-4 text-white" />
</Button>
<Hint label="created by Divyanshu">
<Button
variant="transparent"
className="iconSm"
onClick={() =>
window.open(
"https://github.com/Diivvuu/slack-clone-nextjs",
"_blank"
)
}
>
<Info className="size-4 text-white" />
</Button>
</Hint>
</div>
</div>
);
Expand Down

0 comments on commit 52cd1ec

Please sign in to comment.