We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2db8582 commit f6c0407Copy full SHA for f6c0407
apps/dashboard/src/app/nebula-app/layout.tsx
@@ -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
13
14
+ },
15
+};
16
17
+export default function Layout(props: {
18
+ children: React.ReactNode;
19
+}) {
20
+ return props.children;
21
+}
0 commit comments