+
Something went wrong: {error.message}
+
+
+ );
+}
+```
+
+```tsx
+// ❌ DON'T — unhandled async errors crash the page with no recovery
+export default async function DashboardPage() {
+ const data = await db.query.metrics.findMany(); // If this throws — white screen
+ return