2024-11-13 08:33:48 +01:00
|
|
|
import type { JSX } from 'react'
|
2024-12-03 16:29:30 +01:00
|
|
|
import { Flex, ActionIcon, Group } from '@mantine/core'
|
|
|
|
|
import { IconBrandGithub, IconBrandDiscord } from '@tabler/icons-react'
|
2024-07-27 11:33:34 +02:00
|
|
|
|
2025-01-15 16:59:36 +01:00
|
|
|
import ThemeBtn from '../ThemeBtn'
|
2024-11-13 08:33:48 +01:00
|
|
|
|
2025-01-15 16:59:36 +01:00
|
|
|
export default function NavbarActions(): JSX.Element {
|
2024-07-27 11:33:34 +02:00
|
|
|
return (
|
|
|
|
|
<Flex gap={8}>
|
2024-11-17 12:26:58 +01:00
|
|
|
<Group gap={8}>
|
2024-08-14 14:45:47 +02:00
|
|
|
<ActionIcon
|
|
|
|
|
variant="default"
|
|
|
|
|
size="lg"
|
|
|
|
|
aria-label="Check the project on github"
|
2024-11-30 14:16:10 +01:00
|
|
|
href="https://github.com/tuono-labs/tuono"
|
2024-08-14 14:45:47 +02:00
|
|
|
target="_blank"
|
|
|
|
|
component="a"
|
|
|
|
|
>
|
|
|
|
|
<IconBrandGithub />
|
|
|
|
|
</ActionIcon>
|
2024-08-17 15:37:21 +02:00
|
|
|
<ActionIcon
|
|
|
|
|
variant="default"
|
|
|
|
|
size="lg"
|
2024-11-16 19:52:00 +01:00
|
|
|
aria-label="Join the Tuono's community on Discord!"
|
2024-11-18 18:36:33 +01:00
|
|
|
href="https://discord.com/invite/khQzPa654B"
|
2024-08-17 15:37:21 +02:00
|
|
|
target="_blank"
|
|
|
|
|
component="a"
|
|
|
|
|
>
|
2024-11-16 19:52:00 +01:00
|
|
|
<IconBrandDiscord />
|
2024-08-17 15:37:21 +02:00
|
|
|
</ActionIcon>
|
2024-08-14 14:45:47 +02:00
|
|
|
</Group>
|
2024-08-17 16:23:57 +02:00
|
|
|
<ThemeBtn />
|
2024-07-27 11:33:34 +02:00
|
|
|
</Flex>
|
|
|
|
|
)
|
|
|
|
|
}
|