Blockchain added

This commit is contained in:
2026-04-22 11:04:59 +01:00
parent e0dc9ba2ba
commit cd11e76c07
23 changed files with 10984 additions and 61 deletions

View File

@@ -0,0 +1,14 @@
import type { Metadata } from "next";
export const metadata: Metadata = {
title: "Blockchain Explorer | LexiChain",
description: "View on-chain proofs and verify document integrity",
};
export default function BlockchainLayout({
children,
}: {
children: React.ReactNode;
}) {
return <>{children}</>;
}