Files
supabase/apps/docs/app/error.tsx
Charis 963eabc730 chore(docs): log caught page errors in sentry (#35810)
test to try seeing where prod-only error is being thrown
2025-05-21 11:50:17 -04:00

31 lines
894 B
TypeScript

'use client'
import * as Sentry from '@sentry/nextjs'
import Link from 'next/link'
import { useEffect } from 'react'
import { Button } from 'ui'
const ErrorPage = ({ error }) => {
useEffect(() => {
Sentry.captureException(error)
}, [error])
return (
<div className="h-[calc(100vh-var(--header-height))] w-full flex flex-col gap-8 p-8 items-center justify-center">
<span className="text-center text-5xl text-foreground-lighter">
Sorry, something went wrong
</span>
<div className="flex flex-row items-center gap-4">
<Button asChild type="secondary" className="w-fit p-4 text-lg">
<Link href="/">Return to homepage</Link>
</Button>
<Button type="secondary" className="w-fit p-4 text-lg" onClick={() => location.reload()}>
Refresh page
</Button>
</div>
</div>
)
}
export default ErrorPage