Getting Started

⚠ Requirements

  • Node
  • Npm
  • Mantine (and of course manthemes)

🔌 Installation

Install the manthemes package by using:
npm install manthemes

🦀 Usage

Import the manthemes package and put it on the theme prop of the mantine-provider component
import { retro } from "manthemes/daisyui";
function App() {
return (
<MantineProvider theme={retro} withGlobalStyles withNormalizeCSS>
<Outlet /> {/* Replace this with your app's outlet */}
</MantineProvider>
);
}
Congrats! Now that you imported the package and the theme, it's time to go to the other pages :)