Skip to content

Commit

Permalink
Improve copy
Browse files Browse the repository at this point in the history
  • Loading branch information
ThatAlexPalmer committed Oct 14, 2023
1 parent a462312 commit 49c6ca6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
7 changes: 5 additions & 2 deletions src/components/wrappers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ const Nav = styled.nav`
align-items: center;
width: 100%;
max-width: 768px;
padding: 1rem 0;
`;

const Logotype = styled.span`
Expand Down Expand Up @@ -113,6 +114,7 @@ const Credits = styled.div`
justify-content: flex-start;
align-items: flex-start;
font-size: ${({ theme }) => theme.fontSizes.large};
margin-bottom: 4rem;
a, span {
padding: 0 1rem 0 0;
Expand All @@ -135,6 +137,7 @@ const TallyWrapper = styled.div`
flex-direction: column;
align-items: center;
justify-content: center;
padding: 2px;
width: 100%;
height: 100%;
`;
Expand All @@ -146,7 +149,7 @@ const FooterWrapper = styled.footer`
align-items: flext-start;
align-self: center;
justify-content: flex-start;
margin: 8rem 0 4rem 0;
margin: 4rem auto;
`;

const FooterContent = styled.div`
Expand All @@ -155,7 +158,7 @@ const FooterContent = styled.div`
justify-content: flex-start;
align-items: flex-start;
width: 100%;
margin: 0 0 0 2.7rem;
margin: 0 auto;
`;

const FooterAside = styled.aside`
Expand Down
13 changes: 7 additions & 6 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { H1, H2, Blockquote, P } from "../components/typography";

const TallyStyles = {
width: "100%",
height: "61.8vh",
height: "61.8rem",
marginHeight: 0,
marginWidth: 0,
frameBorder: 0,
Expand All @@ -15,11 +15,14 @@ export default function Home() {
return (
<Content>
<Heading>
<H1>Open source onramp for in-demand RWAs</H1>
<H1>Onchain equity protocol.</H1>
<P>Onramp for in-demand tokenized real world assets.</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 protocol stack</mark> to build web3 equivalents of transfer agents. This infra lets you <mark>mint performant equity cap tables onchain</mark>.</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>
</Blockquote>
<H2>
Expand All @@ -45,9 +48,7 @@ export default function Home() {
console.log("Tally failed to load");
}}
/>
<TallyWrapper>
<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>
<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>
</Content>
);
Expand Down

0 comments on commit 49c6ca6

Please sign in to comment.