Future Fashion is shaped by unstoppable nft technology.
Binance Smart Chain
eip155:56
#e4703d
NFTSTYLE
18
Future Fashion is shaped by unstoppable nft technology. Nft-Style; It will be the first nft fashion stop where fashion icons, stylists, world brands and amateur artists will guide fashion. The future will now be felt much more closely.Who knows, maybe in the very near future your fashion design will become a unique icon in the world of Fortnite.
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 = "0x5d33e26336c445c71f206dd18b64ce11c2eee3f0";
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],
},
};