2023-10-25 10:18:57 +00:00
|
|
|
// layout
|
|
|
|
import { AppLayout } from "layouts/app-layout";
|
2023-11-01 08:15:04 +00:00
|
|
|
import { WorkspaceSettingLayout } from "layouts/settings-layout";
|
2023-04-08 08:16:46 +00:00
|
|
|
// components
|
2023-10-25 10:18:57 +00:00
|
|
|
import { WorkspaceSettingHeader } from "components/headers";
|
2023-08-14 06:14:17 +00:00
|
|
|
import ExportGuide from "components/exporter/guide";
|
2023-03-23 17:57:11 +00:00
|
|
|
// types
|
2023-04-08 08:16:46 +00:00
|
|
|
import type { NextPage } from "next";
|
2023-07-31 11:52:48 +00:00
|
|
|
// helper
|
|
|
|
|
2023-10-18 13:47:02 +00:00
|
|
|
const ImportExport: NextPage = () => (
|
2023-10-25 10:18:57 +00:00
|
|
|
<AppLayout header={<WorkspaceSettingHeader title="Export Settings" />}>
|
|
|
|
<WorkspaceSettingLayout>
|
|
|
|
<div className="pr-9 py-8 w-full overflow-y-auto">
|
|
|
|
<div className="flex items-center py-3.5 border-b border-custom-border-200">
|
|
|
|
<h3 className="text-xl font-medium">Exports</h3>
|
|
|
|
</div>
|
|
|
|
<ExportGuide />
|
2023-05-05 11:37:29 +00:00
|
|
|
</div>
|
2023-10-25 10:18:57 +00:00
|
|
|
</WorkspaceSettingLayout>
|
|
|
|
</AppLayout>
|
2023-10-18 13:47:02 +00:00
|
|
|
);
|
2023-03-23 17:57:11 +00:00
|
|
|
|
|
|
|
export default ImportExport;
|