Skip to content

Commit 9a432af

Browse files
committed
fix: Tweak 404 page (#6173)
<!-- start pr-codex --> ## PR-Codex overview This PR updates the content of the `NotFoundPage` component to enhance the user experience by changing the messaging displayed when a page is not found. ### Detailed summary - Changed the message from "Looks like web3 can't be found here." to "Looks like you're lost!". - Updated the text from "Try our" to "Find live content on our". - Removed "instead" and added a period after the `TrackedLinkTW` component. > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` <!-- end pr-codex -->
1 parent ee6bd4f commit 9a432af

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

apps/dashboard/src/components/not-found-page.tsx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,14 @@ export function NotFoundPage() {
1313

1414
<p className="text-center font-bold text-3xl tracking-tighter md:text-5xl">
1515
<span className="block"> Uh oh. </span>
16-
<span className="block">Looks like web3</span>
17-
<span className="block">can't be found here.</span>
16+
<span className="block">Looks like you're lost!</span>
1817
</p>
1918

2019
<div className="h-12" />
2120

2221
<div>
2322
<p className="text-center text-muted-foreground text-xl leading-7">
24-
Try our{" "}
23+
Find live content on our{" "}
2524
<TrackedLinkTW
2625
category="page-not-found"
2726
label="homepage"
@@ -47,8 +46,8 @@ export function NotFoundPage() {
4746
className="text-foreground hover:underline"
4847
>
4948
developer portal
50-
</TrackedLinkTW>{" "}
51-
instead
49+
</TrackedLinkTW>
50+
.
5251
</p>
5352
</div>
5453

0 commit comments

Comments
 (0)