docs: add new cards to recipe section (#11615)

This commit is contained in:
Shahed Nasser
2025-02-26 13:03:55 +02:00
committed by GitHub
parent c9df82fefd
commit e8c953de25
6 changed files with 169 additions and 4 deletions
@@ -4,19 +4,28 @@ import {
Card,
CardProps,
ChefHatIcon,
ErpIcon,
IconHeadline,
ImageBinaryIcon,
Link,
RestockIcon,
ScrollTextIcon,
ShopIcon,
} from "docs-ui"
const HomepageRecipesSection = () => {
const cards: CardProps[] = [
{
type: "large",
title: "ERP",
text: "Integrate an ERP system to manage custom product prices, purchase rules, syncing orders, and more.",
href: "https://docs.medusajs.com/resources/recipes/erp",
icon: ErpIcon,
},
{
type: "large",
title: "Marketplace",
text: "Build a marketplace with multiple vendors",
text: "Build a marketplace with multiple vendors.",
href: "https://docs.medusajs.com/resources/recipes/marketplace/examples/vendors",
icon: ShopIcon,
},
@@ -30,7 +39,7 @@ const HomepageRecipesSection = () => {
{
type: "large",
title: "Restaurant-Delivery",
text: "Build a restaurant marketplace inspired by UberEats, with real-time delivery handling",
text: "Build a restaurant marketplace inspired by UberEats, with real-time delivery handling.",
href: "https://docs.medusajs.com/resources/recipes/marketplace/examples/restaurant-delivery",
icon: ChefHatIcon,
},
@@ -41,6 +50,13 @@ const HomepageRecipesSection = () => {
href: "https://docs.medusajs.com/resources/recipes/digital-products/examples/standard",
icon: ImageBinaryIcon,
},
{
type: "large",
title: "Restock Notifications",
text: "Notify customers when a product is back in stock.",
href: "https://docs.medusajs.com/resources/recipes/commerce-automation/restock-notification",
icon: RestockIcon,
},
]
return (
<div className={clsx("py-4 w-full")}>