You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.7 KiB
37 lines
1.7 KiB
/* eslint-disable @next/next/no-css-tags */ |
|
import { AppProps } from 'next/app'; |
|
import { FC } from 'react'; |
|
import ServerStatusProvider from '../../utils/server-status-context'; |
|
import AlertMessageProvider from '../../utils/alert-message-context'; |
|
import { MainLayout } from '../MainLayout'; |
|
|
|
/* |
|
NOTE: A bunch of compiled css is loaded here for the Admin UI. |
|
These are old stylesheets that were converted from sass and should not be |
|
edited or maintained. Instead we are using css modules everywhere. So if you |
|
need to change a style rewrite the css file as a css module and import it |
|
into the component that needs it, removing it from this global list. |
|
*/ |
|
export const AdminLayout: FC<AppProps> = ({ Component, pageProps }) => ( |
|
<> |
|
<link rel="stylesheet" href="/styles/admin/main-layout.css" /> |
|
<link rel="stylesheet" href="/styles/admin/form-textfields.css" /> |
|
<link rel="stylesheet" href="/styles/admin/config-socialhandles.css" /> |
|
<link rel="stylesheet" href="/styles/admin/config-storage.css" /> |
|
<link rel="stylesheet" href="/styles/admin/config-edit-string-tags.css" /> |
|
<link rel="stylesheet" href="/styles/admin/config-video-variants.css" /> |
|
<link rel="stylesheet" href="/styles/admin/config-public-details.css" /> |
|
<link rel="stylesheet" href="/styles/admin/home.css" /> |
|
<link rel="stylesheet" href="/styles/admin/chat.css" /> |
|
<link rel="stylesheet" href="/styles/admin/pages.css" /> |
|
<link rel="stylesheet" href="/styles/admin/offline-notice.css" /> |
|
|
|
<ServerStatusProvider> |
|
<AlertMessageProvider> |
|
<MainLayout> |
|
<Component {...pageProps} /> |
|
</MainLayout> |
|
</AlertMessageProvider> |
|
</ServerStatusProvider> |
|
</> |
|
);
|
|
|