import Area from '@components/common/Area.js'; import { Button } from '@components/common/ui/Button.js'; import { _ } from '@evershop/evershop/lib/locale/translate/_'; import React from 'react'; function Name() { return (

{_('404 Page Not Found')}

); } interface ContentProps { continueShoppingUrl: string; } function Content({ continueShoppingUrl }: ContentProps) { return (
{_('The page you requested does not exist.')}
); } interface NotFoundProps { continueShoppingUrl: string; } export default function NotFound({ continueShoppingUrl }: NotFoundProps) { return (
); } export const layout = { areaId: 'content', sortOrder: 10 }; export const query = ` query Query { continueShoppingUrl: url(routeId: "homepage") } `;