From 9bc558a84b755322c5be00b14ceac312dfd8ca43 Mon Sep 17 00:00:00 2001 From: 0xFirekeeper <0xFirekeeper@gmail.com> Date: Fri, 19 Apr 2024 22:32:22 +0300 Subject: [PATCH] Fix dotnet meta --- src/app/dotnet/layout.tsx | 8 ++++---- src/components/Document/metadata.ts | 3 ++- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/src/app/dotnet/layout.tsx b/src/app/dotnet/layout.tsx index 8877654d..21446430 100644 --- a/src/app/dotnet/layout.tsx +++ b/src/app/dotnet/layout.tsx @@ -12,10 +12,10 @@ export default async function Layout(props: { children: React.ReactNode }) { export const metadata = createMetadata({ image: { - title: "thirdweb Unity SDK", - icon: "unity", + title: "thirdweb .NET SDK", + icon: "dotnet", }, - title: "thirdweb Unity SDK", + title: "thirdweb .NET SDK", description: - "Connect to user's wallets, interact with smart contracts, sign messages, and utilize common standards such as tokens, NFTs, marketplaces; all with built-in RPC URLs, IPFS gateways, and more.", + "Connect to user's wallets, interact with smart contracts, sign in with email or phone number, unlock Account Abstraction features; all with built-in RPC URLs, IPFS gateways, Godot support and more.", }); diff --git a/src/components/Document/metadata.ts b/src/components/Document/metadata.ts index c1f7003f..6fa6f59b 100644 --- a/src/components/Document/metadata.ts +++ b/src/components/Document/metadata.ts @@ -18,7 +18,8 @@ type DynamicImageOptions = { | "infra" | "rpc" | "storage" - | "changelog"; + | "changelog" + | "dotnet"; }; export type MetadataImageIcon = DynamicImageOptions["icon"];