first commit

Made-with: Cursor
This commit is contained in:
Michilis
2026-04-01 02:46:53 +00:00
commit 76210db03d
126 changed files with 20208 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
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;
}