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 Next.js project includes a minimal setup for server side rendering, if you want to learn more on Mantine + Next.js integration follow{' '} this guide . To get started edit page.tsx file. ); }