Skip to content
This repository has been archived by the owner on Jun 2, 2024. It is now read-only.

Commit

Permalink
Add Discord invite (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxijonson committed May 19, 2023
1 parent bc07150 commit ab67a9e
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion packages/web/src/components/AppNavbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import NavbarConversation from "./NavbarConversation";
import React from "react";
import Usage from "./Usage";
import { useMediaQuery } from "@mantine/hooks";
import { BsGithub } from "react-icons/bs";
import { BsDiscord, BsGithub } from "react-icons/bs";

const useStyles = createStyles(() => ({
scrollArea: {
Expand Down Expand Up @@ -203,6 +203,15 @@ export default () => {
>
<BsGithub />
</TippedActionIcon>
<TippedActionIcon
tip="Join Discord server"
onClick={() =>
window.open("https://discord.gg/Aa77KCmwRx")
}
size="xs"
>
<BsDiscord />
</TippedActionIcon>
</Group>
<Text align="center" size="xs">
GPT Turbo Web v{APP_VERSION} by{" "}
Expand Down

0 comments on commit ab67a9e

Please sign in to comment.