From 835b5bef95a6750c5fcd54b5b32a2c04e2655806 Mon Sep 17 00:00:00 2001 From: Duncan Mackenzie <114022764+duncanma-stripe@users.noreply.github.com> Date: Tue, 13 Aug 2024 10:38:54 -0700 Subject: [PATCH] Update README.md (#182) Fix links to docs, some were internal and would not have worked for customers Signed-off-by: Duncan Mackenzie <114022764+duncanma-stripe@users.noreply.github.com> --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 261dcc2..87002dd 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # FurEver: Stripe Connect embedded components demo -FurEver is a vertical SaaS grooming platform for pet salons to manage their e2e business operations. FurEver wants to provide access to Stripe products and UIs directly in their website, at a fraction of the engineering cost, using [Stripe Connect](https://stripe.com/connect) and [Stripe Connect embedded components](https://stripe.com/docs/connect/get-started-connect-embedded-components). +FurEver is a vertical SaaS grooming platform for pet salons to manage their e2e business operations. FurEver wants to provide access to Stripe products and UIs directly in their website, at a fraction of the engineering cost, using [Stripe Connect](https://stripe.com/connect) and [Stripe Connect embedded components](https://docs.stripe.com/connect/get-started-connect-embedded-components). **See a live version on [furever.dev](https://furever.dev).** @@ -8,7 +8,7 @@ FurEver is a vertical SaaS grooming platform for pet salons to manage their e2e ## Features -FurEver showcases the integration between a platform's website, [Stripe Connect](https://stripe.com/connect), and [Stripe Connect embedded components](https://stripe.com/docs/connect/get-started-connect-embedded-components). Users sign up within the platform's website and through the process, a corresponding Stripe unified account is created with the following configuration: +FurEver showcases the integration between a platform's website, [Stripe Connect](https://stripe.com/connect), and [Stripe Connect embedded components](https://docs.stripe.com/connect/get-started-connect-embedded-components). Users sign up within the platform's website and through the process, a corresponding Stripe unified account is created with the following configuration: - Stripe owns loss liability - Platform owns pricing @@ -17,7 +17,7 @@ FurEver showcases the integration between a platform's website, [Stripe Connect] The user will then onboard with Stripe via embedded onboarding. Thereafter, Connect embedded components will provide the UI surfaces for account management and dashboard UI elements with just a few lines of code. The demo website also uses the Stripe API to create test payments and payouts. This app also contains a basic authentication system. -FurEver makes use of the following [Connect embedded components](https://docs.corp.stripe.com/connect/supported-embedded-components): +FurEver makes use of the following [Connect embedded components](https://docs.stripe.com/connect/supported-embedded-components): - `` enables an embedded onboarding experience without redirecting users to Stripe hosted onboarding. - `` provides a list to display Stripe payments, refunds, and disputes. This also includes handling list filtering, pagination, and CSV exports. @@ -25,13 +25,13 @@ FurEver makes use of the following [Connect embedded components](https://docs.co - `` allows users to edit their Stripe account settings without navigating to the Stripe dashboard. - `` displays a list of current and future risk requirements an account needs to resolve. - `` displays a list of tax invoice documents. -- `` allows users to [set up Stripe Tax](https://docs.corp.stripe.com/tax/set-up). +- `` allows users to [set up Stripe Tax](https://docs.stripe.com/tax/set-up). - `` allows users to control their tax compliance settings. -Additionally, the following [beta components](https://docs.corp.stripe.com/connect/supported-embedded-components#beta-components) are also used: +Additionally, the following [beta components](https://docs.stripe.com/connect/supported-embedded-components#beta-components) are also used: - `` **beta** allows users to check their eligibility for financing, get an overview of their in-progress financing, and access the reporting page to review paydown transactions. -- `` **beta** renders a view of an individual [Financial Account](https://docs.corp.stripe.com/api/treasury/financial_accounts) +- `` **beta** renders a view of an individual [Financial Account](https://docs.stripe.com/api/treasury/financial_accounts) - `` **beta** provides a list of transactions associated with a financial account. - `` **beta** provides a list of all the cards issued. @@ -45,7 +45,7 @@ This demo is built with - [Tailwind CSS](https://tailwindcss.com/) - [shadcn/ui](https://ui.shadcn.com/) -To integrate Stripe Connect embedded components, check out our [documentation](https://stripe.com/docs/connect/get-started-connect-embedded-components). +To integrate Stripe Connect embedded components, check out our [documentation](https://docs.stripe.com/connect/get-started-connect-embedded-components). 1. [`hooks/useConnect.ts`](client/hooks/Connect.tsx) shows the client side integration with Connect embedded components. 2. [`api/account_session/route.ts`](server/routes/stripe.ts) shows the server request to `v1/account_sessions`.