import { Separator } from "@/components/ui/separator"; import { cn } from "@/lib/utils"; interface NotFoundProps { message: string; className?: string; } export const NotFound = ({ message, className, }: NotFoundProps) => { return (

404

{message}

) }