Files
LexiChain/app/(dashboard)/blockchain/layout.tsx

15 lines
314 B
TypeScript
Raw Normal View History

2026-04-22 11:04:59 +01:00
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}</>;
}