mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 05:14:20 +03:00
24 lines
No EOL
697 B
TypeScript
24 lines
No EOL
697 B
TypeScript
import 'antd/dist/antd.compact.css';
|
|
import '../styles/colors.scss';
|
|
import '../styles/globals.scss';
|
|
|
|
// GW: I can't override ant design styles through components using NextJS's built-in CSS modules. So I'll just import styles here for now and figure out enabling SASS modules later.
|
|
import '../styles/home.scss';
|
|
|
|
import { AppProps } from 'next/app';
|
|
import ServerStatusProvider from '../utils/server-status-context';
|
|
import MainLayout from './components/main-layout';
|
|
|
|
|
|
function App({ Component, pageProps }: AppProps) {
|
|
return (
|
|
<ServerStatusProvider>
|
|
<MainLayout>
|
|
<Component {...pageProps} />
|
|
</MainLayout>
|
|
</ServerStatusProvider>
|
|
|
|
)
|
|
}
|
|
|
|
export default App; |