2024-08-14 14:45:47 +02:00
|
|
|
import { Flex, Button, ActionIcon, Group } from '@mantine/core'
|
2024-07-27 11:33:34 +02:00
|
|
|
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>
|
2024-08-14 14:45:47 +02:00
|
|
|
<Group gap={8} visibleFrom="sm">
|
|
|
|
|
<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 />
|
|
|
|
|
</Group>
|
2024-07-27 11:33:34 +02:00
|
|
|
</Flex>
|
|
|
|
|
)
|
|
|
|
|
}
|