Skip to content

Commit f6c0407

Browse files
committed
[DASH-612] Nebula: Add title and description meta (#5732)
DASH-612
1 parent 2db8582 commit f6c0407

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import type { Metadata } from "next";
2+
3+
const title =
4+
"thirdweb Nebula: The Most powerful AI for interacting with the blockchain";
5+
const description =
6+
"The most powerful AI for interacting with the blockchain, with real-time access to EVM chains and their data";
7+
8+
export const metadata: Metadata = {
9+
title,
10+
description,
11+
openGraph: {
12+
title,
13+
description,
14+
},
15+
};
16+
17+
export default function Layout(props: {
18+
children: React.ReactNode;
19+
}) {
20+
return props.children;
21+
}

0 commit comments

Comments
 (0)