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.
29 lines
742 B
29 lines
742 B
import React from 'react'; |
|
import { Typography } from 'antd'; |
|
import Link from 'next/link'; |
|
|
|
import configStyles from '../styles/config-pages.module.scss'; |
|
import EditInstanceDetails from './components/config/edit-instance-details'; |
|
|
|
const { Title } = Typography; |
|
|
|
export default function PublicFacingDetails() { |
|
return ( |
|
<> |
|
<Title level={2}>Edit your public facing instance details</Title> |
|
|
|
<div className={configStyles.publicDetailsContainer}> |
|
<div className={configStyles.textFieldsSection}> |
|
<EditInstanceDetails /> |
|
|
|
|
|
<Link href="/admin/config-page-content"> |
|
<a>Edit your extra page content here.</a> |
|
</Link> |
|
</div> |
|
</div> |
|
</> |
|
); |
|
} |
|
|
|
|
|
|