import type { Metadata } from "next";
import type { ReactNode } from "react";

export const metadata: Metadata = {
  title: "Đăng nhập",
  description: "Đăng nhập Cổ Thư Kỳ Tịch — tài khoản beta.",
};

export default function LoginLayout({ children }: { children: ReactNode }) {
  return children;
}
