import { Title, Text } from '@mantine/core'; import { ThemeToggle } from '../theme-toggle'; export function Welcome() { return ( <> <Text inherit variant="gradient" component="span" gradient={{ from: 'pink', to: 'yellow' }} > Welcome </Text> Welcome to something new and interesting. ); }