EmptyStateMissingRoute() — supabase Function Reference
Architecture documentation for the EmptyStateMissingRoute() function in empty-state-missing-route.tsx from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/design-system/registry/default/example/empty-state-missing-route.tsx lines 7–29
export default function EmptyStateMissingRoute() {
return (
<div className="flex items-center justify-center w-full h-full">
<Admonition
type="default"
className="max-w-md"
title="Unable to find bucket"
description={`${bucketId ? `The bucket “${bucketId}”` : 'This bucket'} doesn’t seem to exist.`}
>
<Button asChild type="default" className="mt-2">
<Link
href="/"
onClick={(e) => {
e.preventDefault() // Just for demo purposes
}}
>
Head back
</Link>
</Button>
</Admonition>
</div>
)
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free