Skip to content

Commit

Permalink
add documentation button
Browse files Browse the repository at this point in the history
  • Loading branch information
willpinha committed Oct 16, 2024
1 parent c6f0f31 commit 3bd83e2
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions app/layouts/select-theme-layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
Tooltip,
} from "@mantine/core";
import { useDisclosure } from "@mantine/hooks";
import { TbBrandGithub } from "react-icons/tb";
import { TbBrandGithub, TbFileDescription } from "react-icons/tb";
import { Outlet } from "react-router";
import { SchemeToggleButton } from "~/components/button/SchemeToggleButton";
import { SelectThemeButton } from "~/components/button/SelectThemeButton";
Expand Down Expand Up @@ -56,9 +56,7 @@ export default function Layout() {
size="sm"
/>
<Stack gap={0}>
<Title visibleFrom="sm" order={5}>
Mantine Themes
</Title>
<Title order={5}>Mantine Themes</Title>
<Text c="dimmed" size="xs">
Made by{" "}
<Anchor
Expand All @@ -71,10 +69,19 @@ export default function Layout() {
</Stack>
</Group>
<Group gap="xs">
<Tooltip label="Documentation">
<ActionIcon
aria-label="Documentation"
component="a"
href=""
>
<TbFileDescription />
</ActionIcon>
</Tooltip>
<Tooltip label="GitHub">
<ActionIcon
aria-label="GitHub"
color="dark.8"
color="dark.5"
component="a"
href="https://github.com/willpinha/mantine-themes"
>
Expand Down

0 comments on commit 3bd83e2

Please sign in to comment.