import { ColorSchemesSwitcher } from "@/components/color-schemes-switcher" import { AppShell, AppShellHeader, AppShellMain, Text, Title, } from "@mantine/core" export default function Home() { return ( Welcome to{" "} <Text inherit variant="gradient" component="span" gradient={{ from: "pink", to: "yellow" }} > Mantine </Text>{" "} + <Text inherit variant="gradient" component="span" gradient={{ from: "blue", to: "green" }} > TailwindCSS </Text> This starter Next.js project includes a minimal setup for Mantine with TailwindCSS. To get started edit page.tsx file.
) }