diff --git a/src/app/AppBody.tsx b/src/app/AppBody.tsx new file mode 100644 index 0000000..b2b21d2 --- /dev/null +++ b/src/app/AppBody.tsx @@ -0,0 +1,46 @@ +import { ThemeProvider, StyledEngineProvider } from '@mui/material/styles' +import CssBaseline from '@mui/material/CssBaseline' +import theme from '@Modules/theme' +import '@Styles/globals.css' +import { SpeedInsights } from '@vercel/speed-insights/next' + +import { StateProvider } from '@Modules/store' +import { GoogleAnalytics } from '@Components/GoogleAnalytics' +import SearchAppBar from '@Components/SearchAppBar/SearchAppBar' +import Footer from '@Components/Footer' +const Layout = ({ children }) => ( +
+ {children} +
+) + +const Content = ({ children }) => { + return
{children}
+} + +export const AppBody = ({ children }: { children: React.ReactNode }) => { + return ( + <> + + + + + + + + {children} +