Skip to content

Commit

Permalink
rename
Browse files Browse the repository at this point in the history
  • Loading branch information
naps62 committed Mar 22, 2024
1 parent 94511bb commit 1969091
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "iron-wallet-website",
"name": "@ethui/site",
"version": "0.1.0",
"private": true,
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import "@rainbow-me/rainbowkit/styles.css";
const inter = Inter({ subsets: ["latin"] });

export const metadata: Metadata = {
title: "Iron Wallet",
description: "A developer-centric Ethereum Wallet",
title: "EthUI",
description: "An Ethereum toolkit",
};

export default function RootLayout({
Expand Down
7 changes: 3 additions & 4 deletions src/app/onboarding/extension/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,7 @@ const CHROME_EXTENSION =
"https://chrome.google.com/webstore/detail/iron-wallet/eljobehkpcnpekmbcjiidekjhkbcnpkf";
const FIREFOX_EXTENSION =
"https://addons.mozilla.org/en-US/firefox/addon/iron-wallet/?utm_source=addons.mozilla.org&utm_medium=referral&utm_content=search";
const GITHUB_LATEST_RELEASE =
"https://github.com/iron-wallet/iron/releases/tag/v0.6.2";
const GITHUB_LATEST_RELEASE = "https://github.com/ethui/ethui/releases/latest";

const { chains, publicClient } = configureChains(
[foundry],
Expand Down Expand Up @@ -50,7 +49,7 @@ export default function Extension() {
<div className="space-y-4">
<section>
<h2 className="text-lg font-semibold mb-2">
1. Install the Iron extension for your browser:
1. Install the EthUI extension for your browser:
</h2>
<DownloadLinks />
</section>
Expand Down Expand Up @@ -82,7 +81,7 @@ const Header = () => {
<Link href="/">
<Image
src="https://avatars.githubusercontent.com/u/130035865?s=200&v=4"
alt="Iron Wallet Logo"
alt="EthUI Logo"
width="40"
height="40"
className="h-14 w-auto"
Expand Down
10 changes: 5 additions & 5 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,32 +9,32 @@ export default function Home() {
<div className="flex justify-center items-center">
<Image
src="https://avatars.githubusercontent.com/u/130035865?s=200&v=4"
alt="Iron Wallet Logo"
alt="EthUI Logo"
width={100}
height={100}
className="h-24 w-auto"
/>
<div className="ml-6">
<h1 className="text-4xl font-bold tracking-tight text-gray-900 sm:text-6xl">
Iron Wallet
EthUI
</h1>
<p className="text-lg leading-8 text-gray-600">
A developer-centric Ethereum Wallet
An Ethereum toolkit
</p>
</div>
</div>

<div className="mt-10 flex items-center justify-center gap-x-6">
<a
href="http://github.com/iron-wallet"
href="http://github.com/ethui"
target="_blank"
className="flex justify-center items-center rounded-md bg-black px-3.5 py-2.5 text-sm font-semibold text-white hover:bg-slate-600"
>
<FaGithub className="mr-1" />
Github
</a>

<a href="http://mirror.xyz/iron-wallet.eth" target="_blank">
<a href="http://mirror.xyz/ethui.eth" target="_blank">
Blog
</a>
</div>
Expand Down

0 comments on commit 1969091

Please sign in to comment.