Initial commit

This commit is contained in:
Daniel Alves Rösel
2026-04-02 18:47:14 +02:00
committed by GitHub
commit 90ad5e0260
94 changed files with 7797 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
'use client';
export default function Error({
error,
reset,
}: {
error: Error & { digest?: string };
reset: () => void;
}) {
return (
<div>
{/* TODO: Style this error page when implementing in your project */}
<h2>Something went wrong!</h2>
<p>{error.message || 'An unexpected error occurred'}</p>
<button onClick={() => reset()}>
Try again
</button>
</div>
);
}