Skip to content

Commit

Permalink
Merge pull request #42 from transfer-agent-protocol/apalmer/copy-noti…
Browse files Browse the repository at this point in the history
…ce-update

Enhancement - copy update, Clearbit integration
  • Loading branch information
ThatAlexPalmer authored Jan 5, 2024
2 parents d5b0db8 + c51225f commit d38b4d9
Show file tree
Hide file tree
Showing 13 changed files with 104 additions and 129 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright 2023 Poet Network Inc.
Copyright 2023 Alex Palmer, Victor Mimo.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Transfer Agent Protocol frontend and landing page

Public-facing site for the [Transfer Agent Protocol](https://github.com/poet-network/tap-cap-table).
Public-facing site for the [Transfer Agent Protocol](https://github.com/transfer-agent-protocol/tap-cap-table).

## Official links

Expand Down
2 changes: 1 addition & 1 deletion next-sitemap.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const config = {
},
{
userAgent: "*",
allow: ["/", "/join"],
allow: ["/"],
disallow: ["/app*", "/_next/*"],
},
],
Expand Down
3 changes: 0 additions & 3 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ const nextConfig = {
compiler: {
styledComponents: true,
},
serverRuntimeConfig: {
SLACK_WEBHOOK_URL: process.env.SLACK_WEBHOOK_URL,
},
};

module.exports = nextConfig;
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
{
"name": "app-scaffold",
"name": "tap-app",
"version": "4.0.0",
"private": true,
"author": "Alex Palmer <[email protected]>",
"license": "UNLICENSED",
"description": "Poet's frontend scaffold for web apps",
"description": "TAP's frontend",
"scripts": {
"dev": "next dev",
"build": "next build",
Expand All @@ -22,6 +21,7 @@
"next-sitemap": "^4.0.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-gtm-module": "^2.0.11",
"react-is": "^18.2.0",
"styled-components": "^5.3.9"
},
Expand Down
1 change: 0 additions & 1 deletion public/robots.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ Allow: /
# *
User-agent: *
Allow: /
Allow: /join
Disallow: /app*
Disallow: /_next/*

Expand Down
3 changes: 1 addition & 2 deletions public/sitemap-0.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:news="http://www.google.com/schemas/sitemap-news/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:mobile="http://www.google.com/schemas/sitemap-mobile/1.0" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xmlns:video="http://www.google.com/schemas/sitemap-video/1.1">
<url><loc>https://transferagentprotocol.xyz</loc><lastmod>2023-09-18T20:46:53.296Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://transferagentprotocol.xyz/join</loc><lastmod>2023-09-18T20:46:53.296Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
<url><loc>https://transferagentprotocol.xyz</loc><lastmod>2024-01-03T19:25:42.544Z</lastmod><changefreq>daily</changefreq><priority>0.7</priority></url>
</urlset>
6 changes: 3 additions & 3 deletions src/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,17 @@ export default function Navbar() {
</LogoRouter>
<span>
<StyledA>
<Link href="https://github.com/poet-network/tap-cap-table" target="_blank ">
<Link href="https://github.com/transfer-agent-protocol/tap-cap-table" target="_blank ">
<Image src="/icons/github.svg" alt="TAP Cap Table Github" width={32} height={32} />
</Link>
</StyledA>
<StyledA>
<Link href="https://coda.io/d/Transfer-Agent-Protocol_drhpwRhDok-/Transfer-Agent-Protocol_sua17#_lu_Fh" target="_blank">
<Link href="https://coda.io/d/_drhpwRhDok-/Transfer-Agent-Protocol_sua17" target="_blank">
<Image src="/icons/docs.svg" alt="Documentation" width={32} height={32} />
</Link>
</StyledA>
<StyledA>
<Link href="https://youtube.com/@poetnetworkhq" target="_blank">
<Link href="https://youtube.com/@transfer-agent-protocol" target="_blank">
<Image src="/icons/youtube.svg" alt="YouTube Videos" width={32} height={32} />
</Link>
</StyledA>
Expand Down
2 changes: 1 addition & 1 deletion src/components/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default function Layout({ children }: Props) {
<Main>{children}</Main>
<FooterWrapper>
<FooterContent>
© {new Date().getFullYear()} builders
© {new Date().getFullYear()} Transfer Agent Protocol Authors
</FooterContent>
</FooterWrapper>
</FullWidth>
Expand Down
9 changes: 9 additions & 0 deletions src/pages/_app.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
import type { AppProps } from 'next/app';
import type { NextPage } from 'next';
import Head from "next/head";
import { useEffect } from "react";
import { ThemeProvider } from "styled-components";
import theme from "../components/theme";
import GlobalStyle from "../components/globalstyle";
import { IBM_Plex_Mono } from 'next/font/google';
import TagManager from "react-gtm-module";

import Layout from "../components/layout";

Expand Down Expand Up @@ -60,6 +62,13 @@ export default function App({ Component, pageProps }: AppProps & { Component: Ne
<meta name="msapplication-TileColor" content="#0c0b0c" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />

<>
{useEffect(() => {
// Google Tag Manager for the Transfer Agent Protocol property and Clearbit
TagManager.initialize({ gtmId: "GTM-T976LRGP" });
}, [])}
</>

</Head>
<Component {...pageProps} />
</Layout>
Expand Down
49 changes: 17 additions & 32 deletions src/pages/index.tsx
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>
);
}
19 changes: 0 additions & 19 deletions src/pages/join.tsx

This file was deleted.

Loading

0 comments on commit d38b4d9

Please sign in to comment.