Files
community-rule/app/(app)/login/layout.tsx
T
2026-04-18 14:12:49 -06:00

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;
}