Files
medusa-store/www/apps/book/app/_not-found.mdx
2024-11-13 11:02:01 +02:00

46 lines
1017 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're looking for Medusa v1 documentation, it's been moved to [docs.medusajs.com/v1](https://docs.medusajs.com/v1).
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: "/learn",
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
}
]}
/>