Skip to content

Commit

Permalink
get rid of those links n crap
Browse files Browse the repository at this point in the history
  • Loading branch information
drippypop committed Sep 7, 2024
1 parent 488d434 commit d04da88
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 37 deletions.
15 changes: 0 additions & 15 deletions src/components/LinksDropdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,6 @@ export function LinksDropdown(props: { children: React.ReactNode }) {
<DropdownLink href="/about" icon={Icons.CIRCLE_QUESTION}>
{t("navigation.menu.about")}
</DropdownLink>
<DropdownLink href={conf().DONATION_LINK} icon={Icons.DONATION}>
{t("navigation.menu.donation")}
</DropdownLink>
{deviceName ? (
<DropdownLink
className="!text-type-danger opacity-75 hover:opacity-100"
Expand All @@ -154,18 +151,6 @@ export function LinksDropdown(props: { children: React.ReactNode }) {
{t("navigation.menu.logout")}
</DropdownLink>
) : null}
<Divider />
<div className="my-4 flex justify-center items-center gap-4">
<CircleDropdownLink
href={conf().DISCORD_LINK}
icon={Icons.DISCORD}
/>
<CircleDropdownLink href={conf().GITHUB_LINK} icon={Icons.GITHUB} />
<CircleDropdownLink
href={conf().DONATION_LINK}
icon={Icons.DONATION}
/>
</div>
</div>
</Transition>
</div>
Expand Down
6 changes: 0 additions & 6 deletions src/components/layout/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,6 @@ export function Footer() {
<p className="mt-3">{t("footer.legal.disclaimerText")}</p>
</div>
<div className="flex flex-wrap gap-[0.5rem] -ml-3">
<FooterLink icon={Icons.GITHUB} href={conf().GITHUB_LINK}>
{t("footer.links.github")}
</FooterLink>
<FooterLink icon={Icons.DISCORD} href={conf().DISCORD_LINK}>
{t("footer.links.discord")}
</FooterLink>
<div className="inline md:hidden">
<Dmca />
</div>
Expand Down
16 changes: 0 additions & 16 deletions src/components/layout/Navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,22 +86,6 @@ export function Navigation(props: NavigationProps) {
>
<BrandPill clickable />
</Link>
<a
href={conf().DISCORD_LINK}
target="_blank"
rel="noreferrer"
className="text-xl text-white tabbable rounded-full"
>
<IconPatch icon={Icons.DISCORD} clickable downsized />
</a>
<a
href={conf().GITHUB_LINK}
target="_blank"
rel="noreferrer"
className="text-xl text-white tabbable rounded-full"
>
<IconPatch icon={Icons.GITHUB} clickable downsized />
</a>
</div>
<div className="relative pointer-events-auto">
<LinksDropdown>
Expand Down

0 comments on commit d04da88

Please sign in to comment.