-
Notifications
You must be signed in to change notification settings - Fork 194
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(explorer): add title metadata to pages (#3264)
- Loading branch information
Showing
4 changed files
with
17 additions
and
2 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
packages/explorer/src/app/(explorer)/[chainName]/worlds/[worldAddress]/explore/page.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
import { Metadata } from "next"; | ||
import { Explorer } from "./Explorer"; | ||
|
||
export const metadata: Metadata = { | ||
title: "Explore", | ||
}; | ||
|
||
export default function ExplorePage() { | ||
return <Explorer />; | ||
} |
5 changes: 5 additions & 0 deletions
5
packages/explorer/src/app/(explorer)/[chainName]/worlds/[worldAddress]/interact/page.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
import { Metadata } from "next"; | ||
import { Form } from "./Form"; | ||
|
||
export const metadata: Metadata = { | ||
title: "Interact", | ||
}; | ||
|
||
export default async function InteractPage() { | ||
return <Form />; | ||
} |
5 changes: 5 additions & 0 deletions
5
packages/explorer/src/app/(explorer)/[chainName]/worlds/[worldAddress]/observe/page.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
import type { Metadata } from "next"; | ||
import { TransactionsTable } from "./TransactionsTable"; | ||
|
||
export const metadata: Metadata = { | ||
title: "Observe", | ||
}; | ||
|
||
export default function ObservePage() { | ||
return <TransactionsTable />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters