Skip to content

Commit

Permalink
feat: add X button on documentation website
Browse files Browse the repository at this point in the history
  • Loading branch information
Valerioageno committed Aug 17, 2024
1 parent a497937 commit 4809733
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion apps/documentation/src/components/navbar/actions.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Flex, Button, ActionIcon, Group } from '@mantine/core'
import { IconBrandGithub, IconBook } from '@tabler/icons-react'
import { IconBrandGithub, IconBook, IconBrandX } from '@tabler/icons-react'
import ThemeBtn from '../theme-btn'
import { Link } from 'tuono'

Expand All @@ -26,6 +26,17 @@ export default function Actions(): JSX.Element {
>
<IconBrandGithub />
</ActionIcon>
<ActionIcon
variant="default"
size="lg"
aria-label="We are also on X!"
href="https://x.com/tuono_dev"
target="_blank"
component="a"
>
<IconBrandX />
</ActionIcon>

<ThemeBtn />
</Group>
</Flex>
Expand Down

0 comments on commit 4809733

Please sign in to comment.