AMAZY is a crypto fitness app with two main courses: to Move and to Earn by equipping NFT sneakers, uniting the ideas of a healthy lifestyle and profiting simultaneously.
Binance Smart Chain
eip155:56
#04a3f6
AZY
18
AMAZY is a crypto fitness app with two main courses: to Move and to Earn by equipping NFT sneakers, uniting the ideas of a healthy lifestyle and profiting simultaneously. The project focuses on becoming the ecosystem, called the AMAZY Realverse, focusing on a healthy lifestyle.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "56";
const address = "0x7b665b2f633d9363b89a98b094b1f9e732bd8f86";
const frontmatter = await xmatter.getFrontmatter(chainId, address);
return (
<div>
<XmatterIcon
client={xmatter}
chainId={chainId}
address={address}
width={64} height={64}
alt={`${frontmatter.name} Icon`}
fallback={<div className="size-[64px] rounded-full bg-[#aaa]" />}
/>
<h1>{frontmatter.name}</h1>
<p>{frontmatter.symbol}: {frontmatter.decimals} decimals</p>
</div>
);
}import { RemotePattern } from "xmatter/next";
const nextConfig = {
images: {
remotePatterns: [RemotePattern],
},
};