feat: create overview and getting started pages

This commit is contained in:
Valerio Ageno
2024-08-15 19:25:03 +02:00
parent b2940d9fa8
commit 3ca24ec87f
11 changed files with 103 additions and 6 deletions
@@ -0,0 +1,5 @@
import { Text, type TextProps } from '@mantine/core'
export default function MdxBold(props: TextProps): JSX.Element {
return <Text fw={700} {...props} />
}