Files
medusa-store/www/apps/user-guide/app/not-found.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

43 lines
890 B
Plaintext

import { CardList } from "docs-ui"
import {
BookOpen,
AcademicCapSolid,
ComputerDesktopSolid,
BuildingStorefront
} from "@medusajs/icons"
export const metadata = {
title: `Page Not Found`,
}
# {metadata.title}
The page you were looking for isn't available.
If you think this is a mistake, please [report this issue on GitHub](https://github.com/medusajs/medusa/issues/new?assignees=&labels=type%3A+docs&template=docs.yml).
<CardList
itemsPerRow={2}
items={[
{
title: "Get Started Docs",
href: "/",
icon: BookOpen
},
{
title: "Development Resources",
href: "!resources!",
icon: AcademicCapSolid
},
{
title: "Admin API reference",
href: "!api!/admin",
icon: ComputerDesktopSolid
},
{
title: "Store API reference",
href: "!api!/store",
icon: BuildingStorefront
}
]}
/>