diff --git a/app/[not-found]/page.tsx b/app/[not-found]/page.tsx new file mode 100644 index 000000000..31aa7c6ae --- /dev/null +++ b/app/[not-found]/page.tsx @@ -0,0 +1,21 @@ +'use client'; + +export const runtime = 'edge'; + +export default function Error({ reset }: { reset: () => void }) { + return ( +
+

Oh no!

+

+ There was an issue with our storefront. This could be a temporary issue, please try your + action again. +

+ +
+ ); +} diff --git a/package.json b/package.json index 20453ceaf..1a76d387b 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,6 @@ "@types/node": "20.8.9", "@types/react": "18.2.33", "@types/react-dom": "18.2.14", - "@vercel/git-hooks": "^1.0.0", "autoprefixer": "^10.4.16", "eslint": "^8.52.0", "eslint-config-next": "^14.0.0",