Skip to content

Commit

Permalink
adds a support icon in bottom right of screen (irfanbozkurt#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
escottalexander authored Aug 5, 2024
1 parent 0b2e3dc commit e64d080
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion packages/nextjs/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { HeartIcon } from "@heroicons/react/24/outline";
import { ChatBubbleOvalLeftEllipsisIcon, HeartIcon } from "@heroicons/react/24/outline";
import { SwitchTheme } from "~~/components/SwitchTheme";

/**
Expand Down Expand Up @@ -29,6 +29,15 @@ export const Footer = () => {
</div>
</ul>
</div>

<a
href="https://t.me/+1rbnZWGTpJExOGJh"
target="_blank"
rel="noreferrer"
className="fixed bottom-4 right-4 p-2 bg-secondary-500 rounded-full text-white"
>
<ChatBubbleOvalLeftEllipsisIcon className="h-8 w-8" />
</a>
</div>
);
};

0 comments on commit e64d080

Please sign in to comment.