docs: improve alt of images (#12998)
* docs: improve alt of images * fix vale errors
This commit is contained in:
@@ -65,7 +65,7 @@ By following this guide, you'll add the following features to Medusa:
|
||||
3. Customers can accept or reject a quote once it's been sent by the merchant.
|
||||
4. Once the customer accepts a quote, it's converted to an order in Medusa.
|
||||
|
||||

|
||||

|
||||
|
||||
To implement these features, you'll be customizing the Medusa server and the Medusa Admin dashboard.
|
||||
|
||||
@@ -1772,7 +1772,7 @@ Then, open the Medusa Admin dashboard at `http://localhost:9000/app` and login u
|
||||
|
||||
You'll find a "Quotes" sidebar item. If you click on it, it will show you the table of quotes.
|
||||
|
||||

|
||||

|
||||
|
||||
---
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@ The Analytics Module exposes functionalities to track and analyze user interacti
|
||||
|
||||
In your Medusa application, you can use the Analytics Module to send data to third-party analytics services like PostHog or Segment, enabling you to gain insights into user behavior and system performance.
|
||||
|
||||

|
||||

|
||||
|
||||
---
|
||||
|
||||
|
||||
@@ -111,11 +111,11 @@ In addition, Resend allows you to send emails from the address `onboarding@resen
|
||||
1. Go to Domains from the sidebar.
|
||||
2. Click on Add Domain.
|
||||
|
||||

|
||||

|
||||
|
||||
3\. In the form that opens, enter your domain name and select a region close to your users, then click Add.
|
||||
|
||||

|
||||

|
||||
|
||||
4\. In the domain's details page that opens, you'll find DNS records to add to your DNS provider. After you add them, click on Verify DNS Records. You can start sending emails from your custom domain once it's verified.
|
||||
|
||||
|
||||
@@ -35,7 +35,7 @@ By following this tutorial, you'll learn how to:
|
||||
|
||||
You can follow this tutorial whether you're new to Medusa or an advanced Medusa developer.
|
||||
|
||||

|
||||

|
||||
|
||||
<Card
|
||||
title="Example Repository"
|
||||
@@ -481,27 +481,27 @@ To set the webhook URL, you need to create a Slack application and configure a w
|
||||
1. Go to your [Slack Apps](https://api.slack.com/apps) page.
|
||||
2. Click the "Create New App" button.
|
||||
|
||||

|
||||

|
||||
|
||||
3. In the pop-up, choose "From scratch".
|
||||
4. Enter the app's name and select the workspace to install it in.
|
||||
5. Once you're done, click the "Create App" button.
|
||||
|
||||

|
||||

|
||||
|
||||
6. In the app's settings, go to the "Incoming Webhooks" section.
|
||||
7. Enable the "Activate Incoming Webhooks" toggle.
|
||||
|
||||

|
||||

|
||||
|
||||
8. In the "Webhook URLs for Your Workspace" section, click the "Add New Webhook" button.
|
||||
|
||||

|
||||

|
||||
|
||||
9. Select the channel or conversation to send notifications to and click the "Allow" button.
|
||||
10. Copy the generated webhook URL.
|
||||
|
||||

|
||||

|
||||
|
||||
Then, in the `.env` file of your Medusa application, set the `SLACK_WEBHOOK_URL` and `SLACK_ADMIN_URL` environment variables:
|
||||
|
||||
|
||||
@@ -41,7 +41,7 @@ By following this tutorial, you'll learn how to:
|
||||
- Customize the add-to-cart flow to support bundled products.
|
||||
- Customize the Next.js Starter Storefront to display bundled products.
|
||||
|
||||

|
||||

|
||||
|
||||
<CardList items={[
|
||||
{
|
||||
|
||||
@@ -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."],
|
||||
|
||||
+1
-1
@@ -158,7 +158,7 @@ During cart-completion before placing the order, this method is used to authoriz
|
||||
third-party payment provider. The payment can later be captured
|
||||
using the [capturePayment](page.mdx#capturepayment) method.
|
||||
|
||||

|
||||

|
||||
|
||||
When authorized successfully, a `Payment` is created by the Payment
|
||||
Module, and it's associated with the order.
|
||||
|
||||
Reference in New Issue
Block a user