Files
medusa-store/www/apps/resources/app/page.mdx
Shahed Nasser 138523a629 docs: change navbar items + breadcrumb improvements (#9209)
- Add a new commerce module navbar item
- Rename Learning Resources to Development Resources (in navbar and across documentation content)
- Improve breadcrumbs to show categories / subcategories

Preview: https://resources-docs-git-docs-navbar-changes-medusajs.vercel.app/v2/resources
2024-09-22 12:47:35 +00:00

143 lines
2.5 KiB
Plaintext

import {
TagSolid,
CheckCircleSolid,
ShoppingCartSolid,
CurrencyDollarSolid,
UsersSolid,
PuzzleSolid,
EnvelopeSolid,
ArrowDownTray,
ChartBar,
Text,
SquaresPlusSolid,
JavascriptEx,
ReactJsEx,
CommandLineSolid,
NextJs,
BuildingStorefront,
CreditCardSolid,
ClockSolid,
DocumentTextSolid,
Stripe,
PhotoSolid,
BuildingsSolid
} from "@medusajs/icons"
# Medusa Development Resources
Explore Medusa's commerce modules, SDKs, configurations, recipes, and more.
<Note title="Getting started?">
Follow the [Medusa v2 Docs](!docs!) to become an advanced Medusa developer.
</Note>
## Commerce Modules
<CardList items={[
{
icon: TagSolid,
title: "Product Module",
href: "/commerce-modules/product",
},
{
icon: CheckCircleSolid,
title: "Order Module",
href: "/commerce-modules/order",
},
{
icon: ShoppingCartSolid,
title: "Cart Module",
href: "/commerce-modules/cart",
},
{
icon: CurrencyDollarSolid,
title: "Pricing Module",
href: "/commerce-modules/pricing",
},
{
icon: UsersSolid,
title: "Customer Module",
href: "/commerce-modules/customer",
},
{
type: "filler",
text: "Find more modules for your commerce application.",
href: "/commerce-modules"
}
]} />
---
## Integrations
<CardList items={[
{
icon: Stripe,
title: "Stripe",
iconClassName: "[&_path]:fill-medusa-fg-subtle",
href: "/commerce-modules/payment/payment-provider/stripe",
},
{
icon: EnvelopeSolid,
title: "SendGrid",
href: "/architectural-modules/notification/sendgrid",
},
{
icon: DocumentTextSolid,
title: "S3",
href: "/architectural-modules/file/s3",
},
{
type: "filler",
text: "Integrate other third-party services to your application.",
href: "/integrations"
}
]} />
---
## Recipes
<CardList items={[
{
icon: BuildingStorefront,
title: "Marketplace",
href: "/recipes/marketplace",
},
{
icon: CreditCardSolid,
title: "Subscriptions",
href: "/recipes/subscriptions",
},
{
icon: PhotoSolid,
title: "Digital Products",
href: "/recipes/digital-products",
},
{
type: "filler",
text: "Find more recipes to implement your use case.",
href: "/recipes"
}
]} />
---
## SDKs and Tools
<CardList itemsPerRow={2} items={[
{
icon: CommandLineSolid,
title: "Medusa CLI",
href: "/medusa-cli",
},
{
icon: NextJs,
iconClassName: "[&_path]:fill-medusa-fg-subtle",
title: "Next.js Starter",
href: "/nextjs-starter",
},
]} />