import { BulkSyncSection } from "@/modules/bulk-sync/bulk-sync-section";
import { ChannelProviderConnectionList } from "@/modules/channel-provider-connection/channels-provider-connection-list";
import { ProvidersList } from "@/modules/providers-listing/providers-list";
import { AppHeader } from "@/modules/ui/app-header";
import { AppSection } from "@/modules/ui/app-section";
import { Box, Text } from "@saleor/macaw-ui/next";
import { NextPage } from "next";
const ConfigurationPage: NextPage = () => {
return (
Configure one or more CMS providers to synchronize Saleor products.
}
mainContent={}
/>
Map channels to providers to automatically sync every added, deleted or updated
product variant.
}
mainContent={}
/>
Perform an initial scan of product variants to push existing database to selected
provider.
Its recommended to run this flow initially, once app is configured.
}
mainContent={}
/>
);
};
export default ConfigurationPage;