This commit is contained in:
2026-05-12 17:35:38 +03:00
parent d9ffcb4b92
commit e3f3e62482
51 changed files with 882 additions and 3413 deletions
+6 -6
View File
@@ -1,7 +1,7 @@
'use client';
import { useEffect } from 'react';
"use client";
import { useEffect } from "react";
export default function Error({
error,
reset,
@@ -13,7 +13,7 @@ export default function Error({
// Optionally log the error to an error reporting service
console.error(error);
}, [error]);
return (
<main className="flex h-full flex-col items-center justify-center">
<h2 className="text-center">Something went wrong!</h2>
@@ -28,4 +28,4 @@ export default function Error({
</button>
</main>
);
}
}