Skip to content

Commit

Permalink
Website: Add discord link to navbar (#405)
Browse files Browse the repository at this point in the history
  • Loading branch information
BramSuurdje authored Nov 21, 2024
1 parent a146ecf commit 378a9be
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions frontend/src/config/siteConfig.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { MessagesSquare, Scroll } from "lucide-react";
import { FaGithub } from "react-icons/fa";
import { FaDiscord, FaGithub } from "react-icons/fa";

export const basePath = process.env.BASE_PATH;

Expand All @@ -10,16 +10,22 @@ export const navbarLinks = [
icon: <FaGithub className="h-4 w-4" />,
text: "Github",
},
{
href: `https://discord.gg/2wvnMDgdnU`,
event: "Discord",
icon: <FaDiscord className="h-4 w-4" />,
text: "Discord",
},
{
href: `https://github.com/community-scripts/${basePath}/blob/main/CHANGELOG.md`,
event: "Change Log",
icon: <Scroll className="h-4 w-4" />,
icon: <Scroll className="h-4 w-4 hidden sm:block" />,
text: "Change Log",
},
{
href: `https://github.com/community-scripts/${basePath}/discussions`,
event: "Discussions",
icon: <MessagesSquare className="h-4 w-4" />,
icon: <MessagesSquare className="h-4 w-4 hidden sm:block" />,
text: "Discussions",
},
];
Expand Down

0 comments on commit 378a9be

Please sign in to comment.