2021-01-28 12:08:57 +01:00
|
|
|
import React from 'react';
|
|
|
|
import { Typography } from 'antd';
|
2020-12-27 04:44:09 +01:00
|
|
|
|
2021-02-07 04:38:58 +01:00
|
|
|
import EditInstanceDetails from '../components/config/edit-instance-details';
|
|
|
|
import EditInstanceTags from '../components/config/edit-tags';
|
2021-02-13 08:55:59 +01:00
|
|
|
import EditSocialLinks from '../components/config/edit-social-links';
|
|
|
|
import EditPageContent from '../components/config/edit-page-content';
|
2021-04-12 09:07:08 +02:00
|
|
|
import EditCustomStyles from '../components/config/edit-custom-css';
|
2021-01-27 10:46:08 +01:00
|
|
|
|
2020-12-27 03:04:23 +01:00
|
|
|
const { Title } = Typography;
|
|
|
|
|
|
|
|
export default function PublicFacingDetails() {
|
|
|
|
return (
|
2021-02-13 08:55:59 +01:00
|
|
|
<div className="config-public-details-page">
|
2021-02-14 10:30:42 +01:00
|
|
|
<Title>General Settings</Title>
|
2021-02-13 08:55:59 +01:00
|
|
|
<p className="description">
|
2021-02-07 04:38:58 +01:00
|
|
|
The following are displayed on your site to describe your stream and its content.{' '}
|
2021-03-04 09:54:26 +01:00
|
|
|
<a
|
|
|
|
href="https://owncast.online/docs/website/?source=admin"
|
|
|
|
target="_blank"
|
|
|
|
rel="noopener noreferrer"
|
|
|
|
>
|
2021-02-26 21:38:55 +01:00
|
|
|
Learn more.
|
|
|
|
</a>
|
2021-02-04 21:41:35 +01:00
|
|
|
</p>
|
2021-02-13 08:55:59 +01:00
|
|
|
|
|
|
|
<div className="top-container">
|
|
|
|
<div className="form-module instance-details-container">
|
|
|
|
<EditInstanceDetails />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className="form-module social-items-container ">
|
|
|
|
<div className="form-module tags-module">
|
|
|
|
<EditInstanceTags />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div className="form-module social-handles-container">
|
|
|
|
<EditSocialLinks />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="form-module page-content-module">
|
|
|
|
<EditPageContent />
|
2021-01-31 10:38:20 +01:00
|
|
|
</div>
|
2021-04-12 09:07:08 +02:00
|
|
|
<div className="form-module page-content-module">
|
|
|
|
<EditCustomStyles />
|
|
|
|
</div>
|
2021-02-13 08:55:59 +01:00
|
|
|
</div>
|
2021-01-31 10:38:20 +01:00
|
|
|
);
|
2020-12-27 03:04:23 +01:00
|
|
|
}
|