You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.6 KiB
50 lines
1.6 KiB
import React from 'react'; |
|
import { Typography } from 'antd'; |
|
|
|
import EditInstanceDetails from '../components/config/edit-instance-details'; |
|
import EditInstanceTags from '../components/config/edit-tags'; |
|
import EditSocialLinks from '../components/config/edit-social-links'; |
|
import EditPageContent from '../components/config/edit-page-content'; |
|
import EditCustomStyles from '../components/config/edit-custom-css'; |
|
|
|
const { Title } = Typography; |
|
|
|
export default function PublicFacingDetails() { |
|
return ( |
|
<div className="config-public-details-page"> |
|
<Title>General Settings</Title> |
|
<p className="description"> |
|
The following are displayed on your site to describe your stream and its content.{' '} |
|
<a |
|
href="https://owncast.online/docs/website/?source=admin" |
|
target="_blank" |
|
rel="noopener noreferrer" |
|
> |
|
Learn more. |
|
</a> |
|
</p> |
|
|
|
<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 /> |
|
</div> |
|
<div className="form-module page-content-module"> |
|
<EditCustomStyles /> |
|
</div> |
|
</div> |
|
); |
|
}
|
|
|