docs: improve alt of images (#12998)
* docs: improve alt of images * fix vale errors
This commit is contained in:
@@ -22,7 +22,7 @@ In this guide, you'll learn how to implement the last step of the checkout flow,
|
||||
|
||||
The payment step requires implementing the following flow:
|
||||
|
||||

|
||||

|
||||
|
||||
1. Retrieve the payment providers using the [List Payment Providers API route](!api!/store#payment-providers_getpaymentproviders).
|
||||
2. Customer chooses the payment provider to use.
|
||||
|
||||
@@ -63,7 +63,7 @@ In this guide, you'll learn how to:
|
||||
- Install and set up Medusa.
|
||||
- Create a custom express checkout storefront with Next.js.
|
||||
|
||||

|
||||

|
||||
|
||||
You can follow this guide whether you're new to Medusa or an advanced Medusa developer.
|
||||
|
||||
@@ -212,7 +212,7 @@ Aside from the SDK, you also install the `@medusajs/types` package, which provid
|
||||
|
||||
Next, to use the SDK, you'll export a configured instance and re-use it across your application. So, create the file `lib/sdk.ts` with the following content:
|
||||
|
||||

|
||||

|
||||
|
||||
export const sdkHighlights = [
|
||||
["6", "NEXT_PUBLIC_MEDUSA_BACKEND_URL", "Set the backend URL from an environment variable."],
|
||||
@@ -240,7 +240,7 @@ This file exports a configured instance of the Medusa SDK that you can use to se
|
||||
- `NEXT_PUBLIC_MEDUSA_BACKEND_URL`: The URL of the Medusa application server. By default, it's set to `http://localhost:9000`.
|
||||
- `NEXT_PUBLIC_MEDUSA_PUBLISHABLE_KEY`: The publishable API key of the Medusa application. You can find this key in the Medusa Admin dashboard under Settings -> Publishable API Keys.
|
||||
|
||||

|
||||

|
||||
|
||||
---
|
||||
|
||||
@@ -257,7 +257,7 @@ To easily access and manage these resources, you'll wrap your storefront with tw
|
||||
|
||||
To create the region provider, create the file `providers/region.tsx` with the following content:
|
||||
|
||||

|
||||

|
||||
|
||||
export const regionProviderHighlights1 = [
|
||||
["9", "region", "The region selected by the customer."],
|
||||
|
||||
Reference in New Issue
Block a user