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