import { AcademicCapSolid, BookOpen } from "@medusajs/icons" import clsx from "clsx" import { CardList, H1, H2, MDXComponents, SimilarPages } from "docs-ui" import { config } from "../config" const P = MDXComponents.p as React.FC< React.HTMLAttributes > const A = MDXComponents.a as React.FC< React.AnchorHTMLAttributes > const NotFoundPage = () => { return (

Page Not Found

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.

If you think this is a mistake, please{" "} report this issue on GitHub .

Other Resources

) } export default NotFoundPage