feat(SW-3192): Checks if user exists, otherwise logout and show error * feat(SW-3192): Checks if user exists, otherwise logout and show error
15 lines
275 B
TypeScript
15 lines
275 B
TypeScript
import { UserNotFound } from "@/components/UserNotFound/UserNotFound"
|
|
|
|
import type { Metadata } from "next"
|
|
|
|
export const metadata: Metadata = {
|
|
robots: {
|
|
index: false,
|
|
follow: false,
|
|
},
|
|
}
|
|
|
|
export default function UserNotFoundPage() {
|
|
return <UserNotFound />
|
|
}
|