diff --git a/components/Card/Card.tsx b/components/Card/Card.tsx index c779321b..d41509e9 100644 --- a/components/Card/Card.tsx +++ b/components/Card/Card.tsx @@ -18,8 +18,8 @@ function Card({ image, title, description, href }: CardProps) { target="_blank" rel="noopener noreferrer" > -
{title}
diff --git a/components/EcosystemApps/EcosystemApps.tsx b/components/EcosystemApps/EcosystemApps.tsx index 6625fef7..dcd2f39a 100644 --- a/components/EcosystemApps/EcosystemApps.tsx +++ b/components/EcosystemApps/EcosystemApps.tsx @@ -12,7 +12,7 @@ const EcosystemApps = () => { appData.forEach(app => app.tags.forEach(tag => tags.add(tag))); setAllTags(Array.from(tags)); }, []); - // Filter by "title" and "tag" fields from appData.ts + // Filter by "title" and "tag" fields from appData.ts // Filter by "title" and "tag" fields from appData.ts const filteredApps = useMemo(() => ( appData.filter(app => app.title.toLowerCase().includes(searchTerm.toLowerCase()) || diff --git a/pages/user-guides/block-explorers.mdx b/pages/user-guides/block-explorers.mdx index 0e26bd3e..2fa76a91 100644 --- a/pages/user-guides/block-explorers.mdx +++ b/pages/user-guides/block-explorers.mdx @@ -1,4 +1,5 @@ import { Tabs } from "nextra/components"; +import { Callout } from "nextra/components"; # Block Explorers @@ -18,7 +19,9 @@ Most block explorers offer tools for viewing, and sometimes even interacting wit - Smart Contracts: Query smart contract states, deployments and interactions with other wallets or addresses. Some may include the raw code for the contract. -> 📘 Note: In rare cases, some information may be misinterpreted. Off-chain data should be used as a guide only. +