15 lines
268 B
TypeScript
15 lines
268 B
TypeScript
import type { Metadata } from "next";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Log in · CommunityRule",
|
|
robots: { index: false, follow: false },
|
|
};
|
|
|
|
export default function LoginLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return children;
|
|
}
|