Files
tuono/apps/documentation/src/components/Navbar/NavbarActions.tsx
T

36 lines
939 B
TypeScript
Raw Normal View History

import type { JSX } from 'react'
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'
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}>
<Group gap={8}>
2024-08-14 14:45:47 +02:00
<ActionIcon
variant="default"
size="lg"
aria-label="Check the project on github"
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"
aria-label="Join the Tuono's community on Discord!"
href="https://discord.com/invite/khQzPa654B"
2024-08-17 15:37:21 +02:00
target="_blank"
component="a"
>
<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>
)
}