diff --git a/examples/material-next-app-router-ts/src/app/about/page.tsx b/examples/material-next-app-router-ts/src/app/about/page.tsx index ed88b9fc0f928f..96ffd6aaf99fb6 100644 --- a/examples/material-next-app-router-ts/src/app/about/page.tsx +++ b/examples/material-next-app-router-ts/src/app/about/page.tsx @@ -1,5 +1,4 @@ import * as React from 'react'; - import About from '@/layouts/About/About'; export default function AboutPage() { diff --git a/examples/material-next-app-router-ts/src/app/fonts/fonts.ts b/examples/material-next-app-router-ts/src/app/fonts/fonts.ts index e1cff0daa47b52..3aed094a9f319b 100644 --- a/examples/material-next-app-router-ts/src/app/fonts/fonts.ts +++ b/examples/material-next-app-router-ts/src/app/fonts/fonts.ts @@ -8,7 +8,5 @@ export default GoogleInterFont; // Local Fonts example // more details here: https://nextjs.org/docs/app/building-your-application/optimizing/fonts#local-fonts // import localFont from 'next/font/local'; - // const LocalFont = localFont({src: [{path: './path-of-font-file-regular.woff', weight: '400', style: 'normal'}], fallback: ['Arial', 'sans-serif']}) - // export default LocalFont; diff --git a/examples/material-next-app-router-ts/src/app/page.tsx b/examples/material-next-app-router-ts/src/app/page.tsx index c7e0ffb00bb08d..a91df75626a081 100644 --- a/examples/material-next-app-router-ts/src/app/page.tsx +++ b/examples/material-next-app-router-ts/src/app/page.tsx @@ -1,5 +1,4 @@ import * as React from 'react'; - import Home from '@/layouts/Home/Home'; export default function RootPage() { diff --git a/examples/material-next-app-router-ts/src/components/Theme/ThemeRegistry/ThemeRegistry.tsx b/examples/material-next-app-router-ts/src/components/Theme/ThemeRegistry/ThemeRegistry.tsx index e5fc1005709c5e..f5cd20e832226e 100644 --- a/examples/material-next-app-router-ts/src/components/Theme/ThemeRegistry/ThemeRegistry.tsx +++ b/examples/material-next-app-router-ts/src/components/Theme/ThemeRegistry/ThemeRegistry.tsx @@ -4,7 +4,6 @@ import * as React from 'react'; import { ThemeProvider } from '@mui/material/styles'; import CssBaseline from '@mui/material/CssBaseline'; import { NextAppDirEmotionCacheProvider } from '@/components/Theme/ThemeRegistry/EmotionCache'; - import theme from './theme'; export default function ThemeRegistry({ children }: { children: React.ReactNode }) { diff --git a/examples/material-next-app-router-ts/src/components/Theme/ThemeRegistry/theme.ts b/examples/material-next-app-router-ts/src/components/Theme/ThemeRegistry/theme.ts index a0aa2b470e9d99..59a9cce95f27a7 100644 --- a/examples/material-next-app-router-ts/src/components/Theme/ThemeRegistry/theme.ts +++ b/examples/material-next-app-router-ts/src/components/Theme/ThemeRegistry/theme.ts @@ -1,7 +1,6 @@ 'use client'; import { createTheme } from '@mui/material/styles'; - import GoogleInterFont from '@/app/fonts/fonts'; // When needed::: first argument is needed if you have common enterprise theme, and second argument is to override your enterprise theme.