Hand-crafted MUI theme that isn't outdated. Build modern, accessible interfaces with our carefully designed components and thoughtful customizations.
MUI Plus is a component registry for Material UI (MUI) that provides beautifully crafted components and blocks built on top of a hand-crafted theme.
It aims to be goto solution for building your next MUI project.
npx create-next-app@latest mui-plus-starter \
-e https://github.com/siriwatknp/mui-plus/tree/main/examples/nextjs
Replace
mui-plus-starter
with your project name.
The starter includes:
The MUI Plus theme offers a refined, minimalist design system that moves beyond Material Design:
To add the MUI Plus theme to your project:
npx shadcn@latest add https://mui-plus.dev/r/mui-plus.json
// app/layout.tsx
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import { AppRouterCacheProvider } from "@mui/material-nextjs/v15-appRouter";
import InitColorSchemeScript from "@mui/material/InitColorSchemeScript";
+ import { MuiPlusThemeProvider } from "@/mui-plus/theme";
import { AppTheme } from "./theme";
import "./globals.css";
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
<InitColorSchemeScript attribute="class" />
<AppRouterCacheProvider
options={{
enableCssLayer: true,
}}
>
+ <MuiPlusThemeProvider>{children}</MuiPlusThemeProvider>
</AppRouterCacheProvider>
</body>
</html>
);
}
The theme is available in the src/mui-plus/theme
directory.
You can modify them as you want.
MUI Plus provides a growing collection of components and blocks that you can add to your project.
Visit mui-plus.dev to browse all available components with live previews.
Add components directly to your project:
# Add a specific component
npx shadcn@latest add https://mui-plus.dev/r/login-form.json
# Add a block
npx shadcn@latest add https://mui-plus.dev/r/dashboard-sidebar.json
Components will be installed to src/mui-plus/
directory by default.
The Model Context Protocol (MCP) enables AI assistants to interact with your codebase and add components automatically.
First, install the Shadcn MCP server with your client.
Standard config works in most of the tools:
{
"mcpServers": {
"shadcn": {
"command": "npx",
"args": ["-y", "shadcn@canary", "registry:mcp"],
"env": {
"REGISTRY_URL": "https://mui-plus.dev/r/registry.json"
}
}
}
}
Then, restart your AI client to load the configuration.
With MCP configured, you can use natural language commands:
The AI assistant will handle the installation and setup automatically.
my-app/
├── app/ # Next.js app directory
│ ├── layout.tsx # Root layout with theme provider
│ └── page.tsx # Home page
├── src/
│ └── mui-plus/ # MUI Plus components (auto-generated)
│ ├── blocks/ # Complex UI blocks
│ ├── components/ # Reusable components
│ └── theme/ # Theme configuration
├── components.json # shadcn CLI configuration
└── package.json
src/mui-plus/theme/