mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
notes
This commit is contained in:
parent
98b122f8c5
commit
48aea8024e
@ -5,6 +5,7 @@ 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 '../styles/chat.scss';
|
||||
import '../styles/config.scss';
|
||||
|
||||
import { AppProps } from 'next/app';
|
||||
import ServerStatusProvider from '../utils/server-status-context';
|
||||
|
@ -3,11 +3,15 @@ import { Table, Typography, Input } from 'antd';
|
||||
import { isEmptyObject } from '../utils/format';
|
||||
import KeyValueTable from "./components/key-value-table";
|
||||
import { ServerStatusContext } from '../utils/server-status-context';
|
||||
|
||||
import PublicFacingDetails from './components/config/public-facing-details';
|
||||
|
||||
import adminStyles from '../styles/styles.module.scss';
|
||||
|
||||
const { Title } = Typography;
|
||||
const { TextArea } = Input;
|
||||
|
||||
|
||||
function SocialHandles({ config }) {
|
||||
if (!config) {
|
||||
return null;
|
||||
@ -130,6 +134,8 @@ export default function ServerConfig() {
|
||||
|
||||
return (
|
||||
<>
|
||||
<PublicFacingDetails />
|
||||
|
||||
<InstanceDetails config={config} />
|
||||
<SocialHandles config={config} />
|
||||
<PageContent config={config} />
|
||||
|
Loading…
x
Reference in New Issue
Block a user