Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions app/(home)/stats/interchain-messaging/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
import { Metadata } from "next";
import { createMetadata } from "@/utils/metadata";

export const metadata: Metadata = createMetadata({
title: "Avalanche ICM Stats",
description:
"Comprehensive overview of Avalanche Interchain Messaging (ICM) statistics.",
openGraph: {
url: "/stats/icm",
images: {
alt: "Avalanche ICM Stats",
url: "/api/og/stats?title=Avalanche ICM Stats&description=Comprehensive overview of Avalanche Interchain Messaging (ICM) statistics.",
width: 1280,
height: 720,
},
},
twitter: {
images: {
alt: "Avalanche ICM Stats",
url: "/api/og/stats?title=Avalanche ICM Stats&description=Comprehensive overview of Avalanche Interchain Messaging (ICM) statistics.",
width: 1280,
height: 720,
},
},
});

export default function ICMStatsLayout({
children,
}: {
children: React.ReactNode;
}) {
return children;
}
Loading