12 lines
329 B
TypeScript
12 lines
329 B
TypeScript
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;
|
|
}
|