Skip to content
Snippets Groups Projects
user-not-found.tsx 312 B
export const UserNotFound = () => {
    return (
        <div className="flex flex-col items-center p-6 space-y-3">
            <h1 className="text-tertiary text-center">This account does not exist.</h1>
            <h1 className="text-tertiary text-center">Try searching for another.</h1>
        </div>
    )
}