Skip to content

Commit 79fdffb

Browse files
add overview link
1 parent 99f5ef3 commit 79fdffb

File tree

4 files changed

+47
-1
lines changed

4 files changed

+47
-1
lines changed

apps/portal/src/app/page.tsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import Link from "next/link";
55
import DocsHero from "./_images/docs-hero.svg";
66

77
import {
8+
ConnectOverviewIcon,
89
ContractDeployIcon,
910
ContractExploreIcon,
1011
ContractInteractIcon,
@@ -248,6 +249,12 @@ function WalletsSection() {
248249
<SectionTitle id="connect-learn" title="Learn" level={5} />
249250

250251
<Grid>
252+
<ArticleCardIndex
253+
href="/connect"
254+
title="Overview"
255+
description="Everything you need to know about thirdweb Connect"
256+
icon={ConnectOverviewIcon}
257+
/>
251258
<ArticleCardIndex
252259
href="/connect/sign-in/overview"
253260
title="Sign-In"

apps/portal/src/app/unreal-engine/redirects.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// @ts-check
22

33
const redirects = {
4-
"/unreal/:path*": "/unreal-engine-engine/:path*",
4+
"/unreal/:path*": "/unreal-engine/:path*",
55
"/unreal-engine/cpp/wallet-handle": "/unreal-engine/cpp/wallet-handles",
66
"/unreal-engine/blueprints/private-key-wallet":
77
"unreal-engine/blueprints/in-app-wallet",

apps/portal/src/icons/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ export { PaymentsNFTCheckoutIcon } from "./products/payments/PaymentsNFTCheckout
2222
export { PaymentsSponsoredIcon } from "./products/payments/PaymentsSponsoredIcon";
2323
export { PayIcon } from "./products/payments/PayIcon";
2424
// wallets
25+
export { ConnectOverviewIcon } from "./products/wallets/ConnectOverviewIcon";
2526
export { EcosystemWalletsIcon } from "./products/wallets/EcosystemWalletsIcon";
2627
export { WalletsAuthIcon } from "./products/wallets/WalletsAuthIcon";
2728
export { WalletsConnectIcon } from "./products/wallets/WalletsConnectIcon";
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
export function ConnectOverviewIcon(props: { className?: string }) {
2+
return (
3+
<svg
4+
width="24"
5+
height="24"
6+
viewBox="0 0 24 24"
7+
fill="none"
8+
xmlns="http://www.w3.org/2000/svg"
9+
className={props.className}
10+
>
11+
<title>connect overview</title>
12+
<path
13+
fillRule="evenodd"
14+
clipRule="evenodd"
15+
d="M14.5 3C13.6716 3 13 3.67157 13 4.5V9.5C13 10.3284 13.6716 11 14.5 11H19.5C20.3284 11 21 10.3284 21 9.5V4.5C21 3.67157 20.3284 3 19.5 3H14.5ZM3 14.5C3 13.6716 3.67157 13 4.5 13H9.5C10.3284 13 11 13.6716 11 14.5V19.5C11 20.3284 10.3284 21 9.5 21H4.5C3.67157 21 3 20.3284 3 19.5V14.5ZM13 14.5C13 13.6716 13.6716 13 14.5 13H19.5C20.3284 13 21 13.6716 21 14.5V19.5C21 20.3284 20.3284 21 19.5 21H14.5C13.6716 21 13 20.3284 13 19.5V14.5Z"
16+
fill="#9C30B7"
17+
/>
18+
<path
19+
d="M4.5 11C3.67157 11 3 10.3284 3 9.5L3 4.5C3 3.67157 3.67157 3 4.5 3L9.5 3C10.3284 3 11 3.67157 11 4.5L11 9.5C11 10.3284 10.3284 11 9.5 11L4.5 11Z"
20+
fill="url(#paint0_linear_618_1297)"
21+
fillOpacity="0.8"
22+
/>
23+
<defs>
24+
<linearGradient
25+
id="paint0_linear_618_1297"
26+
x1="3"
27+
y1="7"
28+
x2="17.402"
29+
y2="14.1623"
30+
gradientUnits="userSpaceOnUse"
31+
>
32+
<stop stopColor="#E5A1F5" />
33+
<stop offset="1" stopColor="#E169FF" />
34+
</linearGradient>
35+
</defs>
36+
</svg>
37+
);
38+
}

0 commit comments

Comments
 (0)