mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-29 13:52:46 -07:00
32 lines
778 B
TypeScript
32 lines
778 B
TypeScript
|
|
import { Flex, Button, ActionIcon } from '@mantine/core'
|
||
|
|
import { IconBrandGithub, IconBook } from '@tabler/icons-react'
|
||
|
|
import ThemeBtn from '../theme-btn'
|
||
|
|
import { Link } from 'tuono'
|
||
|
|
|
||
|
|
export default function Actions(): JSX.Element {
|
||
|
|
return (
|
||
|
|
<Flex gap={8}>
|
||
|
|
<Button
|
||
|
|
href="/documentation/installation"
|
||
|
|
component={Link}
|
||
|
|
size="compact-lg"
|
||
|
|
rightSection={<IconBook />}
|
||
|
|
autoContrast
|
||
|
|
>
|
||
|
|
Get started
|
||
|
|
</Button>
|
||
|
|
<ActionIcon
|
||
|
|
variant="default"
|
||
|
|
size="lg"
|
||
|
|
aria-label="Check the project on github"
|
||
|
|
href="https://github.com/Valerioageno/tuono"
|
||
|
|
target="_blank"
|
||
|
|
component="a"
|
||
|
|
>
|
||
|
|
<IconBrandGithub />
|
||
|
|
</ActionIcon>
|
||
|
|
<ThemeBtn />
|
||
|
|
</Flex>
|
||
|
|
)
|
||
|
|
}
|