df83860
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"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't find this content.</h1> </div> ) }