Skip to content

Commit

Permalink
feat: added reddit button
Browse files Browse the repository at this point in the history
  • Loading branch information
Icaruk committed Jul 3, 2024
1 parent 7ffa70f commit 8afb921
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
1 change: 1 addition & 0 deletions project.inlang/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cache
12 changes: 11 additions & 1 deletion src/pages/home/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ import { IconArrowRight } from "@tabler/icons-react";
import { IconArrowLeft } from "@tabler/icons-react";
import { getItemIdComponents } from "./utils/item/getItemIdComponents";
import { buildItemId } from "./utils/item/buildItemId";
import { IconBrandReddit, IconBrandGithub } from "@tabler/icons-react";

class ItemGroupElement {
constructor({ type }) {
Expand Down Expand Up @@ -569,7 +570,16 @@ export default observer(function Home() {

<Anchor href="https://github.com/Icaruk/albion-profit" target="_blank">
<Avatar variant="light">
<GithubIcon size={32} color="var(--mantine-color-dark-8)" />
<IconBrandGithub size={32} color="var(--mantine-color-dark-8)" />
</Avatar>
</Anchor>

<Anchor
href="https://www.reddit.com/r/albiononline/comments/1co93rm/i_created_a_tool_to_calculate_profits/"
target="_blank"
>
<Avatar variant="light">
<IconBrandReddit size={32} color="var(--mantine-color-orange-7)" />
</Avatar>
</Anchor>
</Group>
Expand Down

0 comments on commit 8afb921

Please sign in to comment.