Skip to content

Commit

Permalink
fix home page git link
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderjoe committed Apr 28, 2024
1 parent acfde32 commit 7d4d5ae
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions ui/src/pages/Home.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import { Link } from "~/components/link.tsx";
import { Motion } from "solid-motionone";
import { Button } from "~/components/ui/button.tsx";
import { AiFillGithub } from 'solid-icons/ai';
import { AnimationDiv } from '~/components/animated-div.tsx';
import { AiFillGithub } from "solid-icons/ai";
import { AnimationDiv } from "~/components/animated-div.tsx";

export const Home = () => {
return (
Expand Down Expand Up @@ -130,10 +129,14 @@ export const Home = () => {
© {new Date().getFullYear()} Accuribet. All rights reserved.
</p>
<nav class="sm:ml-auto flex gap-4 sm:gap-6">
<Link class="text-xs flex flex-row hover:underline underline-offset-4" href="https://github.com/day-mon/sports-betting-ai">
<a
class="text-xs flex flex-row hover:underline underline-offset-4"
href="https://github.com/day-mon/sports-betting-ai"
target="_blank"
>
<AiFillGithub class="w-4 h-4 mx-2" />
Github
</Link>
</a>
</nav>
</footer>
</div>
Expand Down

0 comments on commit 7d4d5ae

Please sign in to comment.