'use client'; import { useRouter } from 'next/navigation'; export default function Error({ resetAction }: { resetAction?: () => void }) { const router = useRouter(); const defaultReset = () => { router.push('/'); }; return (

Oh no!

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

); }