Skip to content

Commit fc55358

Browse files
committed
Apply types for meta
1 parent a0b98cb commit fc55358

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/app/_meta.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import type { MetaRecord } from "nextra";
12
import { separator } from "../utils/meta";
23

34
export default {
@@ -26,4 +27,4 @@ export default {
2627
"---showcase": separator,
2728

2829
showcase: "Showcase",
29-
};
30+
} as const satisfies MetaRecord;

src/app/integration/_meta.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
import type { MetaRecord } from "nextra";
2+
13
export default {
24
"general-information": "General Information",
35
interfaces: {
46
title: "Solidity API",
57
href: "https://link.humanode.io/docs/biomapper-sdk",
68
},
7-
};
9+
} as const satisfies MetaRecord;

0 commit comments

Comments
 (0)