20 lines
346 B
TypeScript
20 lines
346 B
TypeScript
|
|
import type { Metadata } from "next";
|
||
|
|
|
||
|
|
export const metadata: Metadata = {
|
||
|
|
title: "Logout | RE-Quest",
|
||
|
|
description: "Securely sign out from your RE-Quest account.",
|
||
|
|
|
||
|
|
robots: {
|
||
|
|
index: false,
|
||
|
|
follow: false,
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function LogoutLayout({
|
||
|
|
children,
|
||
|
|
}: {
|
||
|
|
children: React.ReactNode;
|
||
|
|
}) {
|
||
|
|
return <>{children}</>;
|
||
|
|
}
|