import { Metadata } from 'next'; import InteractiveLink from '~/medusa/modules/common/components/interactive-link'; export const metadata: Metadata = { title: '404', description: 'Something went wrong', }; export default async function NotFound() { return (

Page not found

The page you tried to access does not exist.

Go to frontpage
); }