mirror of
https://github.com/supabase/supabase.git
synced 2026-05-09 10:19:50 -04:00
4a0bb36ca8
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Ivan Vasilov <vasilov.ivan@gmail.com>
27 lines
673 B
TypeScript
27 lines
673 B
TypeScript
import Link from 'next/link'
|
|
import { Button, cn } from 'ui'
|
|
import { Admonition } from 'ui-patterns'
|
|
|
|
export const UnknownInterface = ({
|
|
urlBack,
|
|
fullHeight = true,
|
|
}: {
|
|
urlBack: string
|
|
fullHeight?: boolean
|
|
}) => {
|
|
return (
|
|
<div className={cn('w-full flex items-center justify-center', fullHeight && 'h-full')}>
|
|
<Admonition
|
|
type="note"
|
|
className="max-w-xl"
|
|
title="Looking for something?"
|
|
description="We couldn't find the page that you're looking for"
|
|
>
|
|
<Button asChild type="default" className="mt-2">
|
|
<Link href={urlBack}>Head back</Link>
|
|
</Button>
|
|
</Admonition>
|
|
</div>
|
|
)
|
|
}
|