-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Tenscan] address and tx placeholder page for MetaMask redirect link (#…
…1705) * feat: address placeholder page * add home url * Update image source and alt text in `EmptyState` component * add tx details page * update tenscan link
- Loading branch information
Showing
6 changed files
with
73 additions
and
10 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import Layout from "@/src/components/layouts/default-layout"; | ||
import EmptyState from "@/src/components/modules/common/empty-state"; | ||
import { Button } from "@/src/components/ui/button"; | ||
import { useRouter } from "next/router"; | ||
import React from "react"; | ||
|
||
const AddressDetails = () => { | ||
const { push } = useRouter(); | ||
|
||
return ( | ||
<Layout> | ||
<EmptyState | ||
title="Address Details" | ||
description="Coming soon..." | ||
imageSrc="/assets/images/clock.png" | ||
imageAlt="Clock" | ||
action={<Button onClick={() => push("/")}>Go Home</Button>} | ||
/> | ||
</Layout> | ||
); | ||
}; | ||
|
||
export default AddressDetails; |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
import Layout from "@/src/components/layouts/default-layout"; | ||
import EmptyState from "@/src/components/modules/common/empty-state"; | ||
import { Button } from "@/src/components/ui/button"; | ||
import { useRouter } from "next/router"; | ||
import React from "react"; | ||
|
||
const TransactionDetails = () => { | ||
const { push } = useRouter(); | ||
|
||
return ( | ||
<Layout> | ||
<EmptyState | ||
title="Transaction Details" | ||
description="Coming soon..." | ||
imageSrc="/assets/images/clock.png" | ||
imageAlt="Clock" | ||
action={<Button onClick={() => push("/")}>Go Home</Button>} | ||
/> | ||
</Layout> | ||
); | ||
}; | ||
|
||
export default TransactionDetails; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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