);
-}
\ No newline at end of file
+}
diff --git a/frontend/app/test-error/page.tsx b/frontend/app/test-error/page.tsx
new file mode 100644
index 0000000..090aebc
--- /dev/null
+++ b/frontend/app/test-error/page.tsx
@@ -0,0 +1,28 @@
+"use client";
+
+import { useState } from "react";
+
+export default function TestErrorPage() {
+ const [shouldThrow, setShouldThrow] = useState(false);
+
+ if (shouldThrow) {
+ throw new Error("This is a test error to demonstrate the error page!");
+ }
+
+ return (
+
+
+
Error Page Test
+
+ Click the button below to trigger an error and test the error page:
+