integrations.tsx31 lines · main
| 1 | import { IntegrationSettings } from '@/components/interfaces/Settings/Integrations/IntegrationsSettings' |
| 2 | import { DefaultLayout } from '@/components/layouts/DefaultLayout' |
| 3 | import SettingsLayout from '@/components/layouts/ProjectSettingsLayout/SettingsLayout' |
| 4 | import { |
| 5 | ScaffoldContainer, |
| 6 | ScaffoldDivider, |
| 7 | ScaffoldHeader, |
| 8 | ScaffoldTitle, |
| 9 | } from '@/components/layouts/Scaffold' |
| 10 | import type { NextPageWithLayout } from '@/types' |
| 11 | |
| 12 | const ProjectSettingsIntegrations: NextPageWithLayout = () => { |
| 13 | return ( |
| 14 | <> |
| 15 | <ScaffoldContainer> |
| 16 | <ScaffoldHeader> |
| 17 | <ScaffoldTitle>Integrations</ScaffoldTitle> |
| 18 | </ScaffoldHeader> |
| 19 | </ScaffoldContainer> |
| 20 | <ScaffoldDivider /> |
| 21 | <IntegrationSettings /> |
| 22 | </> |
| 23 | ) |
| 24 | } |
| 25 | |
| 26 | ProjectSettingsIntegrations.getLayout = (page) => ( |
| 27 | <DefaultLayout> |
| 28 | <SettingsLayout title="integrations">{page}</SettingsLayout> |
| 29 | </DefaultLayout> |
| 30 | ) |
| 31 | export default ProjectSettingsIntegrations |