mirror of
https://github.com/Shadowfita/docmost.git
synced 2025-11-23 13:11:02 +10:00
24 lines
564 B
TypeScript
24 lines
564 B
TypeScript
import { Title, Text, Stack } from '@mantine/core';
|
|
import { ThemeToggle } from '@/components/theme-toggle';
|
|
|
|
export function Welcome() {
|
|
return (
|
|
<Stack>
|
|
<Title ta="center" mt={100}>
|
|
<Text
|
|
inherit
|
|
variant="gradient"
|
|
component="span"
|
|
gradient={{ from: 'pink', to: 'yellow' }}
|
|
>
|
|
Welcome
|
|
</Text>
|
|
</Title>
|
|
<Text ta="center" size="lg" maw={580} mx="auto" mt="xl">
|
|
Welcome to something new and interesting.
|
|
</Text>
|
|
<ThemeToggle />
|
|
</Stack>
|
|
);
|
|
}
|