Everyone faces challenges with their mental well-being, just like we experience challenges with our physical well-being.
Binance Smart Chain
eip155:56
#d8b961
BUDA
9
Everyone faces challenges with their mental well-being, just like we experience challenges with our physical well-being. There is no health without mental health.We exercise to keep our bodies healthy, but we do very little in our day to day to take care of our mind. By increasing the accessibility of mindfulness education and incentivizing its practice, BudaCoin aims to bring a sustainable solution to the mental health crisis.
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 = "0x4b63f8c52e3286ca871cd66b7c84e26556b2de8e";
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],
},
};