docs: revise admin customization pages (#10466)

* docs: revise admin customization pages

* fix prerequisites link

* apply lint
This commit is contained in:
Shahed Nasser
2024-12-06 16:34:02 +02:00
committed by GitHub
parent 0a077d48e1
commit 21b0e0c26b
9 changed files with 549 additions and 175 deletions
@@ -1,10 +1,23 @@
export const metadata = {
title: `${pageNumber} Customize Admin to Add Brands`,
title: `${pageNumber} Customize Medusa Admin Dashboard`,
}
# {metadata.title}
In the next chapters, you'll continue with the brands example to learn how to customize the Medusa Admin to:
In the previous chapters, you've customized your Medusa application to [add brands](../custom-features/module/page.mdx), [expose an API route to create brands](../custom-features/api-route/page.mdx), and [linked brands to products](../extend-features/define-link/page.mdx).
- Show a product's brand on its details page using a widget.
- Add a page showing the list of brands in your application using a UI route.
After customizing and extending your application with new features, you may need to provide an interface for admin users to utilize these features. The Medusa Admin dashboard is extendable, allowing you to:
- Insert components, called [widgets](../../advanced-development/admin/widgets/page.mdx), on existing pages.
- Add new pages, called [UI Routes](../../advanced-development/admin/ui-routes/page.mdx).
From these customizations, you can send requests to custom API routes, allowing admin users to manage custom resources on the dashboard
---
## Next Chapters: View Brands in Dashboard
In the next chapters, you'll continue with the brands example to:
- Add a new section to the product details page that shows the product's brand.
- Add a new page in the dashboard that shows all brands in the store.