import { Anchor, Text, Title } from '@mantine/core'; import classes from './Welcome.module.css'; export function Welcome() { return ( <> Welcome to{' '} <Text inherit variant="gradient" component="span" gradient={{ from: 'pink', to: 'yellow' }}> Mantine </Text> This starter Vite project includes a minimal setup, if you want to learn more on Mantine + Vite integration follow{' '} this guide . To get started edit pages/Home.page.tsx file. ); }