Skip to content

Commit 2ed2c65

Browse files
Merge pull request #3363 from ava-labs/token-stats
add: token stats page
2 parents 01f910f + ad7efee commit 2ed2c65

File tree

6 files changed

+1056
-1
lines changed

6 files changed

+1056
-1
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
import type { Metadata } from "next";
2+
import { createMetadata } from "@/utils/metadata";
3+
4+
export const metadata: Metadata = createMetadata({
5+
title: "AVAX Token Stats",
6+
description:
7+
"Track AVAX token supply, staking, and burn metrics including total supply, circulating supply and fees burned across all chains.",
8+
openGraph: {
9+
url: "/stats/avax-token",
10+
images: {
11+
alt: "AVAX Token Stats",
12+
url: "/api/og/stats/c-chain?title=AVAX Token Stats&description=Track AVAX token supply, staking, and burn metrics",
13+
width: 1280,
14+
height: 720,
15+
},
16+
},
17+
twitter: {
18+
images: {
19+
alt: "AVAX Token Stats",
20+
url: "/api/og/stats/c-chain?title=AVAX Token Stats&description=Track AVAX token supply, staking, and burn metrics",
21+
width: 1280,
22+
height: 720,
23+
},
24+
},
25+
});
26+
27+
export default function AvaxTokenLayout({
28+
children,
29+
}: {
30+
children: React.ReactNode;
31+
}) {
32+
return <>{children}</>;
33+
}

0 commit comments

Comments
 (0)