Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

improvement(copy) update copy and links #19

Merged
merged 3 commits into from
Oct 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions public/icons/youtube.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions src/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ export default function Navbar() {
<Image src="/icons/docs.svg" alt="Documentation" width={32} height={32} />
</Link>
</StyledA>
<StyledA>
<Link href="https://youtube.com/@poetnetworkhq" target="_blank">
<Image src="/icons/youtube.svg" alt="YouTube Videos" width={32} height={32} />
</Link>
</StyledA>
</span>
</Nav>
);
Expand Down
8 changes: 4 additions & 4 deletions src/components/typography.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const H2 = styled.h2`
line-height: ${({ theme }) => theme.lineHeights.H2};
font-weight: 600;
text-align: left;
margin: 4rem 0 2.75rem 0;
margin-bottom: 3rem;
padding: 0;

&::before {
Expand All @@ -55,7 +55,7 @@ const H3 = styled.h3`
line-height: ${({ theme }) => theme.lineHeights.H3};
font-weight: 600;
text-align: left;
margin-bottom: 1rem;
margin-bottom: 2rem;
padding: 0;

&::before {
Expand All @@ -78,11 +78,11 @@ const Blockquote = styled.blockquote`
font-size: ${({ theme }) => theme.fontSizes.large};
font-weight: 400;
text-align: left;
line-height: 1.58rem;
line-height: 1.618rem;
word-wrap: break-word;
padding: 0;
margin-block-start: 0;
margin-block-end: 0;
margin-block-end: 4rem;
margin-inline-start: 0;
margin-inline-end: 0;
border-left: 2px solid ${({ theme }) => theme.colors.main};
Expand Down
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
Loading