File size: 274 Bytes
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&apos;t find this content.</h1>
    </div>
  )
}