Skip to content

Commit

Permalink
Badges
Browse files Browse the repository at this point in the history
  • Loading branch information
kristoferlund committed Oct 23, 2024
1 parent 4f1f599 commit 08dfdb0
Showing 1 changed file with 35 additions and 16 deletions.
51 changes: 35 additions & 16 deletions src/frontend/routes/__root.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Outlet, createRootRoute } from "@tanstack/react-router";
import { Outlet, createRootRoute } from '@tanstack/react-router';

import alloyLogo from "../assets/alloy.png";
import icLogo from "../assets/ic.svg";
import alloyLogo from '../assets/alloy.png';
import icLogo from '../assets/ic.svg';

export const Route = createRootRoute({
component: Root,
Expand All @@ -19,30 +19,49 @@ function Root() {
</a>
</div>
<h1>Alloy + ICP</h1>
<p>This app is a toolkit to showcase examples on how to use{' '}
<a href="https://github.com/alloy-rs/alloy" target="_blank" rel="noreferrer">Alloy</a>{' '}
<p>
This app is a toolkit to showcase examples on how to use{' '}
<a
href="https://github.com/alloy-rs/alloy"
target="_blank"
rel="noreferrer"
>
Alloy
</a>{' '}
in ICP canisters to simplify interactions with Ethereum. It uses the{' '}
<a href="https://github.com/kristoferlund/ic-alloy" target="_blank" rel="noreferrer">ic-alloy</a>{' '}
fork that adds ICP as a signer and provider.</p>
<a
href="https://github.com/ic-alloy/ic-alloy"
target="_blank"
rel="noreferrer"
>
ic-alloy
</a>{' '}
fork that adds ICP as a signer and provider.
</p>

<Outlet />

<div className="links">
<a
href="https://github.com/kristoferlund/ic-alloy-toolbox"
target="_blank" rel="noreferrer"
href="https://github.com/ic-alloy/ic-alloy-toolbox/graphs/contributors"
target="_blank"
rel="noreferrer"
>
<img src="https://img.shields.io/github/license/kristoferlund/ic-alloy-toolbox" />
<img src="https://img.shields.io/github/contributors/ic-alloy/ic-alloy-toolkit.svg?style=for-the-badge" />
</a>

<a
href="https://github.com/kristoferlund/ic-alloy-toolbox"
target="_blank" rel="noreferrer"
href="https://github.com/ic-alloy/ic-alloy-toolbox"
target="_blank"
rel="noreferrer"
>
<img src="https://img.shields.io/github/stars/kristoferlund/ic-alloy-toolbox" />
<img src="https://img.shields.io/github/license/ic-alloy/ic-alloy-toolkit.svg?style=for-the-badge" />
</a>
<a href="https://github.com/kristoferlund" target="_blank" rel="noreferrer">
<img src="https://img.shields.io/github/followers/kristoferlund" />
<a
href="https://github.com/ic-alloy/ic-alloy-toolbox/stargazers"
target="_blank"
rel="noreferrer"
>
<img src="https://img.shields.io/github/stars/ic-alloy/ic-alloy-toolkit?style=for-the-badge" />
</a>
</div>
</main>
Expand Down

0 comments on commit 08dfdb0

Please sign in to comment.