-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Pagination bug * Bug fix * Bugfixes * Bugfixes
- Loading branch information
1 parent
f04abf1
commit 0aa4d17
Showing
6 changed files
with
30 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { QuestionMarkCircledIcon } from "@radix-ui/react-icons"; | ||
import Link from "next/link"; | ||
import { Button } from "../ui/button"; | ||
|
||
export default function HowTo({ link }: { link: string }) { | ||
return ( | ||
<Link href={link} target="_blank"> | ||
<Button | ||
className="absolute top-40 right-24 text-muted-foreground" | ||
variant={"outline"} | ||
> | ||
How to use this | ||
<QuestionMarkCircledIcon className="w-6 h-6 ml-2 text-muted-foreground" /> | ||
</Button> | ||
</Link> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters