Skip to content
Merged
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/avax-token/layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
import type { Metadata } from "next";
import { createMetadata } from "@/utils/metadata";

export const metadata: Metadata = createMetadata({
title: "AVAX Token Stats",
description:
"Track AVAX token supply, staking, and burn metrics including total supply, circulating supply and fees burned across all chains.",
openGraph: {
url: "/stats/avax-token",
images: {
alt: "AVAX Token Stats",
url: "/api/og/stats/c-chain?title=AVAX Token Stats&description=Track AVAX token supply, staking, and burn metrics",
width: 1280,
height: 720,
},
},
twitter: {
images: {
alt: "AVAX Token Stats",
url: "/api/og/stats/c-chain?title=AVAX Token Stats&description=Track AVAX token supply, staking, and burn metrics",
width: 1280,
height: 720,
},
},
});

export default function AvaxTokenLayout({
children,
}: {
children: React.ReactNode;
}) {
return <>{children}</>;
}
Loading