update jamespong14205,

This commit is contained in:
louiscklaw
2025-02-01 02:02:25 +08:00
parent 8bf2589af5
commit c3a16177eb
90 changed files with 9071 additions and 6 deletions

View File

@@ -0,0 +1,18 @@
import ThemeProvider from '@/config/StyledMaterialThemeProvider';
import theme from '@/config/theme';
import Head from 'next/head';
function MyApp({ Component, pageProps }) {
return (
<>
<Head>
<meta name='viewport' content='minimum-scale=1, initial-scale=1, width=device-width, shrink-to-fit=no' />
</Head>
<ThemeProvider theme={theme}>
<Component {...pageProps} />
</ThemeProvider>
</>
);
}
export default MyApp;