15 lines
314 B
TypeScript
15 lines
314 B
TypeScript
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}</>;
|
|
}
|