-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4bbb38d
commit 973d141
Showing
2 changed files
with
18 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,40 @@ | ||
import Script from "next/script"; | ||
import { Heading, Content, TallyWrapper, Credits } from "../components/wrappers"; | ||
import { Heading, Content, Credits } from "../components/wrappers"; | ||
import { H1, H2, Blockquote, P } from "../components/typography"; | ||
|
||
const TallyStyles = { | ||
width: "100%", | ||
height: "61.8rem", | ||
marginHeight: 0, | ||
marginWidth: 0, | ||
frameBorder: 0, | ||
border: "none", | ||
}; | ||
|
||
export default function Home() { | ||
return ( | ||
<Content> | ||
<Heading> | ||
<H1>Onchain equity protocol.</H1> | ||
<P>Onramp for in-demand tokenized real world assets.</P> | ||
<P>Transfer Agent Infrastructure for tokenizing real-world assets on the blockchain.</P> | ||
<P>Permissionless. Open source. Compliant with transfer agent regulation in the US.</P> | ||
</Heading> | ||
<Blockquote> | ||
<P>Crypto deserves <mark>compliant infrastructure</mark> for <mark>tokenized capital markets</mark>. We believe it must be truly open, free, and user-centric.</P> | ||
<P>Introducing an <mark>open source onchain equity protocol</mark> to build web3 equivalents of transfer agents.</P> | ||
<P>This infra lets you mint performant <mark>equity cap tables</mark> onchain.</P> | ||
<a href="https://paragraph.xyz/@poetnetworkhq/rwa-tokenization-protocol-stack" target="_blank" rel="noopener noreferrer">Read the full announcement</a> | ||
<P>Introducing an <mark>open source onchain equity protocol</mark> to build web3 equivalents of traditional transfer agents.</P> | ||
<P>This infra lets you mint performant <mark>equity cap tables</mark> onchain and handle post-trade settlement of tokenized RWAs.</P> | ||
<P>It is based on and is fully compatible with the <a href="https://www.opencaptablecoalition.com/" target="_blank">Open Cap Table</a> format.</P> | ||
<a href="https://paragraph.xyz/@thatalexpalmer/rwa-tokenization-protocol-stack" target="_blank" rel="noopener">Read the full announcement</a> | ||
</Blockquote> | ||
<H2> | ||
Built by | ||
</H2> | ||
<Credits> | ||
<a href="https://poet.network" target="_blank" rel="noopener noreferrer">Poet</a> | ||
<a href="https://warpcast.com/thatalexpalmer.eth" target="_blank" rel="noopener">thatalexpalmer.eth</a> | ||
<span>|</span> | ||
<a href="https://warpcast.com/vic" target="_blank" rel="noopener">vic</a> | ||
<span>|</span> | ||
<a href="https://pluralenergy.co" target="_blank" rel="noopener noreferrer">Plural Energy</a> | ||
<a href="https://pluralenergy.co" target="_blank" rel="noopener">Plural Energy</a> | ||
<span>|</span> | ||
<a href="https://fairmint.co" target="_blank" rel="noopener noreferrer">Fairmint</a> | ||
<a href="https://fairmint.co" target="_blank" rel="noopener">Fairmint</a> | ||
</Credits> | ||
<H2> | ||
Build with us | ||
Testnet deployments | ||
</H2> | ||
<TallyWrapper> | ||
<Script | ||
src="https://tally.so/widgets/embed.js" | ||
onLoad={() => { | ||
console.log("Tally is ready to receive data"); | ||
}} | ||
onError={() => { | ||
console.log("Tally failed to load"); | ||
}} | ||
/> | ||
<iframe data-tally-src="https://tally.so/r/w2aGPD?alignLeft=1&hideTitle=1&transparentBackground=1&dynamicHeight=1" loading="lazy" style={TallyStyles} title="Build with us"></iframe> | ||
</TallyWrapper> | ||
<Credits> | ||
<a href="https://goerli-optimism.etherscan.io/address/0x7182cc6f1d512906c794742e6a2295e1d8448e82" target="_blank" rel="noopener noreferrer">OP Goerli</a> | ||
<span> | </span> | ||
<a href="https://explorerl2new-plume-orbit-wxh1kfbvb6.t.conduit.xyz/address/0x7182cc6f1d512906C794742e6a2295E1d8448e82" target="_blank" rel="noopener noreferrer">Plume Testnet</a> | ||
</Credits> | ||
</Content> | ||
); | ||
} |