jbilcke-hf's picture
jbilcke-hf HF staff
working on the route system
df83860
raw
history blame
No virus
274 Bytes
"use client"
import { cn } from "@/lib/utils"
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>
)
}