diff --git a/packages/explorer/src/app/(explorer)/[chainName]/worlds/[worldAddress]/explore/page.tsx b/packages/explorer/src/app/(explorer)/[chainName]/worlds/[worldAddress]/explore/page.tsx
index 440a52a88e..9364622589 100644
--- a/packages/explorer/src/app/(explorer)/[chainName]/worlds/[worldAddress]/explore/page.tsx
+++ b/packages/explorer/src/app/(explorer)/[chainName]/worlds/[worldAddress]/explore/page.tsx
@@ -1,5 +1,10 @@
+import { Metadata } from "next";
import { Explorer } from "./Explorer";
+export const metadata: Metadata = {
+ title: "Explore",
+};
+
export default function ExplorePage() {
return ;
}
diff --git a/packages/explorer/src/app/(explorer)/[chainName]/worlds/[worldAddress]/interact/page.tsx b/packages/explorer/src/app/(explorer)/[chainName]/worlds/[worldAddress]/interact/page.tsx
index a3a3355c97..01dc779332 100644
--- a/packages/explorer/src/app/(explorer)/[chainName]/worlds/[worldAddress]/interact/page.tsx
+++ b/packages/explorer/src/app/(explorer)/[chainName]/worlds/[worldAddress]/interact/page.tsx
@@ -1,5 +1,10 @@
+import { Metadata } from "next";
import { Form } from "./Form";
+export const metadata: Metadata = {
+ title: "Interact",
+};
+
export default async function InteractPage() {
return
;
}
diff --git a/packages/explorer/src/app/(explorer)/[chainName]/worlds/[worldAddress]/observe/page.tsx b/packages/explorer/src/app/(explorer)/[chainName]/worlds/[worldAddress]/observe/page.tsx
index 9ca0089678..52406cce1b 100644
--- a/packages/explorer/src/app/(explorer)/[chainName]/worlds/[worldAddress]/observe/page.tsx
+++ b/packages/explorer/src/app/(explorer)/[chainName]/worlds/[worldAddress]/observe/page.tsx
@@ -1,5 +1,10 @@
+import type { Metadata } from "next";
import { TransactionsTable } from "./TransactionsTable";
+export const metadata: Metadata = {
+ title: "Observe",
+};
+
export default function ObservePage() {
return ;
}
diff --git a/packages/explorer/src/app/(explorer)/layout.tsx b/packages/explorer/src/app/(explorer)/layout.tsx
index 97595f9cf9..4467a22c8c 100644
--- a/packages/explorer/src/app/(explorer)/layout.tsx
+++ b/packages/explorer/src/app/(explorer)/layout.tsx
@@ -17,8 +17,8 @@ const jetbrains = JetBrains_Mono({
});
export const metadata: Metadata = {
- title: "World Explorer",
- description: "World Explorer is a tool for visually exploring and manipulating the state of worlds",
+ title: "Worlds Explorer",
+ description: "Worlds Explorer is a tool for visually exploring and manipulating the state of worlds",
};
export default function RootLayout({