diff --git a/apps/playground/src/components/site/metatags.tsx b/apps/playground/src/components/site/metatags.tsx index 86e302c7e..9bfb2de36 100644 --- a/apps/playground/src/components/site/metatags.tsx +++ b/apps/playground/src/components/site/metatags.tsx @@ -19,49 +19,53 @@ export default function Metatags({ keywords = "developer, tools, cardano, blockchain, sdk, plutus, crypto, web3, metaverse, gaming, ecommerce, nfts, apis, aiken"; } + + let _title = title; if (title === undefined) { - title = "Cardano Web3 TypeScript SDK & off-chain Framework"; + _title = "Mesh JS - Cardano Web3 TypeScript SDK & Off-Chain Framework"; + } else { + title = title + " - Mesh JS"; } - title = title + " - Mesh JS"; - return ( - {title} + {title ? title : _title} - - + + - {image ? ( + {image && ( - ) : ( + )} + {title && image === undefined && ( )} - + - + - {image ? ( - - ) : ( + {image && ( + + )} + {title && image === undefined && ( )} - +