Skip to content

Commit 2f5691a

Browse files
fix
1 parent 13cb5da commit 2f5691a

File tree

26 files changed

+74
-70
lines changed

26 files changed

+74
-70
lines changed
954 KB
Loading
977 KB
Loading

apps/dashboard/src/components/shared/ConnectSDKCard.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ export function ConnectSDKCard({
4040
label="Unity SDK"
4141
/>
4242
<DocLink
43-
link="https://portal.thirdweb.com/unreal/getting-started"
43+
link="https://portal.thirdweb.com/unreal-engine/getting-started"
4444
icon={SiUnrealengine}
45-
label="Unreal SDK"
45+
label="Unreal Engine SDK"
4646
/>
4747
<DocLink
4848
link="https://portal.thirdweb.com/dotnet/getting-started"

apps/dashboard/src/pages/sdk.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,9 @@ const Web3SDK: ThirdwebNextPage = () => {
172172
href="/ui-components"
173173
/>
174174
<ProductLearnMoreCard
175-
title="Game Engine SDK"
175+
title="Game Engine SDKs"
176176
category={TRACKING_CATEGORY}
177-
description="Unity SDK includes all supported platforms: Native (Windows, Mac, Linux), Mobile (iOS, Android), Console (PS, Xbox), Browser (WebGL). Unreal SDK coming soon."
177+
description="Unity and Unreal Engine SDKs include all supported platforms: Native (Windows, Mac, Linux), Mobile (iOS, Android), Console (PS, Xbox), Browser (WebGL)."
178178
icon={require("../../public/assets/product-pages/dashboard/hero-icon-3.png")}
179179
href="https://portal.thirdweb.com/unity"
180180
/>

apps/dashboard/src/pages/solutions/gaming.tsx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ const SolutionsGaming: ThirdwebNextPage = () => {
248248
TRACKING_CATEGORY={TRACKING_CATEGORY}
249249
href="https://portal.thirdweb.com/solutions/gaming/unreal-engine/quickstart"
250250
linkTitle="Read the Unreal Engine docs"
251-
label="unreal"
251+
label="unreal-engine"
252252
/>
253253
<ImageCard
254254
title="Mobile"
@@ -303,16 +303,16 @@ const SolutionsGaming: ThirdwebNextPage = () => {
303303
</ImageCard>
304304

305305
<ImageCard
306-
title="Play Speed Racer"
307-
image={require("../../../public/assets/solutions-pages/gaming/gaming-speed-racer.png")}
306+
title="Play TappyFowl"
307+
image={require("../../../public/assets/solutions-pages/gaming/gaming-tappyfowl.png")}
308308
TRACKING_CATEGORY={TRACKING_CATEGORY}
309-
href="https://engine-express.thirdweb-preview.com/"
309+
href="https://tappyfowl.thirdweb.com/"
310310
category="Unreal Engine"
311-
linkTitle="Play Speed Racer"
312-
label="speed-racer"
311+
linkTitle="Play TappyFowl"
312+
label="tappyfowl"
313313
>
314-
An Onchain Survival Game. Escape the dungeon by battling
315-
terrifying bosses.
314+
Guide your fowl through a fantastical landscape that requires
315+
quick reflexes and precise timing.
316316
</ImageCard>
317317
</SimpleGrid>
318318
</Flex>
@@ -339,7 +339,7 @@ const SolutionsGaming: ThirdwebNextPage = () => {
339339
>
340340
<SolutionsGamingCard
341341
p={8}
342-
label="unreal"
342+
label="unreal-engine"
343343
href="https://portal.thirdweb.com/gaming"
344344
>
345345
<LandingIconSectionItem

apps/dashboard/src/pages/templates.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -139,12 +139,12 @@ export const templates: TemplateCardProps[] = [
139139
authorIcon: "/assets/templates/thirdweb-eth.png",
140140
},
141141
{
142-
id: "unreal_demo",
143-
title: "Speed Racers",
144-
homepage: "https://engine-express.thirdweb-preview.com/",
145-
repo: "https://github.com/thirdweb-example/unreal_demo",
146-
description: "Racing demo game using Unreal and thirdweb Engine.",
147-
img: "/assets/templates/speed-racer.png",
142+
id: "unreal_engine_demo",
143+
title: "TappyFowl",
144+
homepage: "https://tappyfowl.thirdweb.com/",
145+
repo: "https://github.com/thirdweb-example/TappyFowl",
146+
description: "Flappy Bird inspired demo game using Unreal Engine and thirdweb Engine.",
147+
img: "/assets/templates/tappyfowl.png",
148148
hoverBorderColor: "hsl(248deg 89% 79% / 15%)",
149149
tags: ["Unreal", "Engine", "Gaming"],
150150
authorENS: "thirdweb.eth",

apps/portal/src/app/connect/blockchain-api/page.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Stack, ArticleIconCard } from "@doc";
2-
import { TypeScriptIcon, ReactIcon, UnityIcon, UnrealIcon, DotNetIcon } from "@/icons";
2+
import { TypeScriptIcon, ReactIcon, UnityIcon, UnrealEngineIcon, DotNetIcon } from "@/icons";
33

44
# Blockchain API
55

@@ -42,9 +42,9 @@ Perfomant, reliable and type safe API to read write to any contract on any EVM c
4242
/>
4343

4444
<ArticleIconCard
45-
title="Unreal"
46-
icon={UnrealIcon}
47-
href="/unreal"
45+
title="Unreal Engine"
46+
icon={UnrealEngineIcon}
47+
href="/unreal-engine"
4848
description="Unral blueprints and C++ API"
4949
/>
5050

apps/portal/src/app/connect/sidebar.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {
1212
WalletsSmartIcon,
1313
} from "@/icons";
1414
import { CodeIcon, ExternalLink, ZapIcon } from "lucide-react";
15-
import { UnrealIcon } from "../../icons/sdks/UnrealIcon";
15+
import { UnrealEngineIcon } from "../../icons/sdks/UnrealEngineIcon";
1616

1717
const connectSlug = "/connect/sign-in";
1818
const inAppSlug = "/connect/in-app-wallet";
@@ -79,9 +79,9 @@ export const sidebar: SideBar = {
7979
icon: <UnityIcon />,
8080
},
8181
{
82-
name: "Unreal",
82+
name: "Unreal Engine",
8383
href: "/unreal-engine",
84-
icon: <UnrealIcon />,
84+
icon: <UnrealEngineIcon />,
8585
},
8686
],
8787
},
@@ -550,9 +550,9 @@ export const sidebar: SideBar = {
550550
icon: <UnityIcon />,
551551
},
552552
{
553-
name: "Unreal",
553+
name: "Unreal Engine",
554554
href: "/unreal-engine",
555-
icon: <UnrealIcon />,
555+
icon: <UnrealEngineIcon />,
556556
},
557557
],
558558
},

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ All the infrastructure to scale and build production grade applications.
5151
/>
5252

5353
<GithubTemplateCard
54-
title="Speed Racer"
55-
href="https://github.com/thirdweb-example/engine-express"
54+
title="TappyFowl"
55+
href="https://github.com/thirdweb-example/TappyFowl"
5656
/>
5757

5858
<GithubTemplateCard
@@ -71,7 +71,7 @@ All the infrastructure to scale and build production grade applications.
7171
/>
7272

7373
<GithubTemplateCard
74-
title="Unreal Demo"
75-
href="https://github.com/thirdweb-example/unreal_demo"
74+
title="Unreal Engine Demo"
75+
href="https://github.com/thirdweb-example/TappyFowl"
7676
/>
7777
</Grid>

apps/portal/src/app/page.tsx

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import {
3333
// User,
3434
// } from "lucide-react";
3535
import { CodeIcon } from "lucide-react";
36-
import { UnrealIcon } from "../icons/sdks/UnrealIcon";
36+
import { UnrealEngineIcon } from "../icons/sdks/UnrealEngineIcon";
3737
// import { LandingPageCTAs } from "./landing-page/CTAs";
3838

3939
export default function Page() {
@@ -239,7 +239,11 @@ function WalletsSection() {
239239
/>
240240
<SDKCardIndex href="/dotnet" title=".NET" icon={DotNetIcon} />
241241
<SDKCardIndex href="/unity" title="Unity" icon={UnityIcon} />
242-
<SDKCardIndex href="/unreal" title="Unreal Engine" icon={UnrealIcon} />
242+
<SDKCardIndex
243+
href="/unreal-engine"
244+
title="Unreal Engine"
245+
icon={UnrealEngineIcon}
246+
/>
243247
</Grid>
244248
<SectionTitle id="connect-learn" title="Learn" level={5} />
245249

0 commit comments

Comments
 (0)