import type { Metadata } from "next"; export const metadata: Metadata = { title: "Sign In", description: "Sign in to the Belgian Bitcoin Embassy with your Nostr identity.", robots: { index: false, follow: false }, }; export default function LoginLayout({ children }: { children: React.ReactNode }) { return children; }