Krios is a platform that connects employers and freelancers in the next hire share economy.
Ethereum
eip155:1
#141f84
GIG
18
Krios is a platform that connects employers and freelancers in the next hire share economy. Many skilled individuals are turning to freelancing as a result of the freedom and flexibility that it brings. Krios enables employers looking to hire and freelancers searching for jobs to connect with one another. Sign up now to search for job opportunities and showcase your skills.
import { XmatterClient } from "xmatter/client";
import { XmatterIcon } from "xmatter/next/server";
const xmatter = new XmatterClient("eip155");
export default async function Page() {
const chainId = "1";
const address = "0x838d8e11b160dec88fe62bf0f743fb7000941e13";
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],
},
};