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