Home / Function/ ErrorPage() — supabase Function Reference

ErrorPage() — supabase Function Reference

Architecture documentation for the ErrorPage() function in error.tsx from the supabase codebase.

Entity Profile

Relationship Graph

Source Code

apps/docs/app/error.tsx lines 8–28

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>
  )
}

Subdomains

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free