Skip to content

Commit c568671

Browse files
committed
lint errors
1 parent f758f85 commit c568671

File tree

3 files changed

+42
-43
lines changed

3 files changed

+42
-43
lines changed

apps/portal/src/app/contracts/page.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { GithubTemplateCard, ExpandableGrid, createMetadata, OpenSourceCard, DocImage, ArticleIconCard, Grid } from "@doc";
22
import SupportedChains from "../_images/supported-chains.png";
3-
import { ExternalLink } from "lucide-react";
3+
import { ExternalLinkIcon } from "lucide-react";
44

55
export const metadata = createMetadata({
66
title: "thirdweb Contracts",
@@ -16,20 +16,20 @@ Contracts is an end-to-end development suite which provides tools to develop, de
1616

1717
<ArticleIconCard
1818
title="Deployment Tool"
19-
icon={ExternalLink}
19+
icon={ExternalLinkIcon}
2020
href="/contracts/deploy/overview"
2121
description="Securely deploy any smart contract."
2222
/>
2323
<ArticleIconCard
2424
title="Explore"
25-
icon={ExternalLink}
25+
icon={ExternalLinkIcon}
2626
href="/contracts/explore/overview"
2727
description="Audited and expansive library of contracts."
2828
/>
2929

3030
<ArticleIconCard
3131
title="Modular Contracts"
32-
icon={ExternalLink}
32+
icon={ExternalLinkIcon}
3333
href="/contracts/explore/overview"
3434
description="Build customizable smart contracts."
3535
/>

apps/portal/src/app/insight/page.mdx

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { OpenSourceCard, DocImage, Grid, ArticleCard, FeatureCard } from "@doc";
22
import { createMetadata } from "@/components/Document";
33
import SupportedChains from "../_images/supported-chains.png";
4-
import { Wallet, File, MessageCircle, Braces, Bot, Blocks, Album, Server, Zap } from "lucide-react";
4+
import { WalletIcon, FileIcon, MessageCircleIcon, BracesIcon, BotIcon, BlocksIcon, AlbumIcon, ServerIcon, ZapIcon } from "lucide-react";
55

66

77
export const metadata = createMetadata({
@@ -27,26 +27,26 @@ Insight is a tool that lets you retrieve blockchain data from any EVM chain, enr
2727
<FeatureCard
2828
title="Easy-to-Use API"
2929
description="Easily understandable data API to query blockchain data."
30-
iconUrl={<Braces />}
30+
iconUrl={<BracesIcon />}
3131
/>
3232

33-
<FeatureCard
34-
title="Managed Infrastructure"
35-
description="No need to index blockchains yourself or manage infrastructure and RPC costs."
36-
iconUrl={<Server />}
37-
/>
33+
<FeatureCard
34+
title="Managed Infrastructure"
35+
description="No need to index blockchains yourself or manage infrastructure and RPC costs."
36+
iconUrl={<ServerIcon />}
37+
/>
3838

3939
<FeatureCard
40-
title="Custom Blueprints"
41-
description="Transform and enrich data easily to suit your needs."
42-
iconUrl={<Album/>}
43-
/>
44-
45-
<FeatureCard
46-
title="Lightning-Fast Queries"
47-
description="Access any transaction, event or token API data"
48-
iconUrl={<Zap/>}
49-
/>
40+
title="Custom Blueprints"
41+
description="Transform and enrich data easily to suit your needs."
42+
iconUrl={<AlbumIcon />}
43+
/>
44+
45+
<FeatureCard
46+
title="Lightning-Fast Queries"
47+
description="Access any transaction, event or token API data"
48+
iconUrl={<ZapIcon />}
49+
/>
5050

5151

5252
</div>

apps/portal/src/app/vault/page.mdx

Lines changed: 21 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
import { createMetadata } from "@/components/Document";
22
import { DocImage, FeatureCard, OpenSourceCard, Callout } from "@doc";
3-
import { ArrowLeftRight, UserLock, Users, Wallet } from "lucide-react";
3+
import { ArrowLeftRightIcon, UserLockIcon, UsersIcon, WalletIcon } from "lucide-react";
44

55

66
export const metadata = createMetadata({
77
title: "thirdweb Vault",
8-
+ description: "An open-source, secure key management service for storing, managing, and protecting cryptographic keys and secrets.",
8+
description: "An open-source, secure key management service for storing, managing, and protecting cryptographic keys and secrets.",
99
});
1010

11-
1211
# Vault
1312

1413
Vault is an open-source non-custodial key management service, secured with TEE architecture (AWS Nitro Enclaves) and designed for blockchain applications.
@@ -18,29 +17,29 @@ Vault is an open-source non-custodial key management service, secured with TEE a
1817
<div
1918
className="my-4 grid gap-2 md:grid-cols-2 lg:grid-cols-2 "
2019
>
21-
<FeatureCard
22-
title="Non-Custodial Wallets"
23-
description="Generate and manage EOAs where private keys remain encrypted and secure"
24-
iconUrl={<Wallet />}
25-
/>
26-
27-
<FeatureCard
28-
title="Programmatic Signing"
29-
description="Enable applications to request signatures based on rules without exposing keys"
30-
iconUrl={<ArrowLeftRight />}
31-
/>
20+
<FeatureCard
21+
title="Non-Custodial Wallets"
22+
description="Generate and manage EOAs where private keys remain encrypted and secure"
23+
iconUrl={<WalletIcon />}
24+
/>
25+
26+
<FeatureCard
27+
title="Programmatic Signing"
28+
description="Enable applications to request signatures based on rules without exposing keys"
29+
iconUrl={<ArrowLeftRightIcon />}
30+
/>
3231

3332
<FeatureCard
34-
title="Sophisticated Access Models"
35-
description="Delegate signing capabilities with granular access controls"
36-
iconUrl={<UserLock />}
37-
/>
33+
title="Sophisticated Access Models"
34+
description="Delegate signing capabilities with granular access controls"
35+
iconUrl={<UserLockIcon />}
36+
/>
3837

3938
<FeatureCard
40-
title="Flexibility"
41-
description="Basic wallet functionality to multi-user organizations with complex permissioning"
42-
iconUrl={<Users/>}
43-
/>
39+
title="Flexibility"
40+
description="Basic wallet functionality to multi-user organizations with complex permissioning"
41+
iconUrl={<UsersIcon />}
42+
/>
4443

4544
</div>
4645

0 commit comments

Comments
 (0)