import { mdiConnection, mdiOpenInNew, mdiWebhook } from '@mdi/js'; import Head from 'next/head'; import React, { ReactElement } from 'react'; import BaseButton from '../components/BaseButton'; import PaymentProviderConnectors from '../components/ReviewFlow/PaymentProviderConnectors'; import SectionMain from '../components/SectionMain'; import SectionTitleLineWithButton from '../components/SectionTitleLineWithButton'; import { getPageTitle } from '../config'; import LayoutAuthenticated from '../layouts/Authenticated'; export default function ConnectPage() { return ( <> {getPageTitle('Connect')}

Payment provider setup

Connect Stripe, PayPal, and Square.

Use this page to generate secure webhook URLs for each provider. Once connected, successful payments can flow into Review Flow and automatically create customers, transactions, and review requests.

How connection works

Pick a provider, enter the business review settings, then copy the generated webhook URL into that provider dashboard. You can rotate URLs anytime if a secret is exposed.

); } ConnectPage.getLayout = function getLayout(page: ReactElement) { return {page}; };