This commit is contained in:
brkcvn 2023-11-10 12:00:42 +03:00
parent 2448f5201c
commit bb879d62a7
2 changed files with 21 additions and 1 deletions

21
app/[not-found]/page.tsx Normal file
View File

@ -0,0 +1,21 @@
'use client';
export const runtime = 'edge';
export default function Error({ reset }: { reset: () => void }) {
return (
<div className="mx-auto my-4 flex max-w-xl flex-col rounded-lg border border-neutral-200 bg-white p-8 dark:border-neutral-800 dark:bg-black md:p-12">
<h2 className="text-xl font-bold">Oh no!</h2>
<p className="my-2">
There was an issue with our storefront. This could be a temporary issue, please try your
action again.
</p>
<button
className="mx-auto mt-4 flex w-full items-center justify-center rounded-full bg-blue-600 p-4 tracking-wide text-white hover:opacity-90"
onClick={() => reset()}
>
Try Again
</button>
</div>
);
}

View File

@ -36,7 +36,6 @@
"@types/node": "20.8.9", "@types/node": "20.8.9",
"@types/react": "18.2.33", "@types/react": "18.2.33",
"@types/react-dom": "18.2.14", "@types/react-dom": "18.2.14",
"@vercel/git-hooks": "^1.0.0",
"autoprefixer": "^10.4.16", "autoprefixer": "^10.4.16",
"eslint": "^8.52.0", "eslint": "^8.52.0",
"eslint-config-next": "^14.0.0", "eslint-config-next": "^14.0.0",