jbilcke's picture
working to improve the clap format
f42b4a1
raw
history blame
277 Bytes
"use client"
import { cn } from "@/lib/utils/cn"
export function NotFoundView() {
return (
<div className={cn(
`w-full`,
`flex flex-row`,
`items-center justify-center`
)}>
<h1>Sorry, we couldn&apos;t find this content.</h1>
</div>
)
}