From fe0464b881a4e0d6ec6513f98873f4a1f9d66855 Mon Sep 17 00:00:00 2001 From: Alex Palmer <24211477+ThatAlexPalmer@users.noreply.github.com> Date: Wed, 3 Jan 2024 14:23:54 -0500 Subject: [PATCH 1/8] Copyright notice update --- LICENSE | 2 +- src/components/layout.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/LICENSE b/LICENSE index 143689a..f49df5f 100644 --- a/LICENSE +++ b/LICENSE @@ -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: diff --git a/src/components/layout.tsx b/src/components/layout.tsx index 8186bd9..3fa976d 100644 --- a/src/components/layout.tsx +++ b/src/components/layout.tsx @@ -12,7 +12,7 @@ export default function Layout({ children }: Props) {
{children}
- © {new Date().getFullYear()} builders + © {new Date().getFullYear()} Transfer Agent Protocol Authors From 6b83cca1ef3c0a13321ee720428f121ddc990bd7 Mon Sep 17 00:00:00 2001 From: Alex Palmer <24211477+ThatAlexPalmer@users.noreply.github.com> Date: Wed, 3 Jan 2024 14:24:03 -0500 Subject: [PATCH 2/8] Update links --- src/components/Navbar.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index a0e9f49..c52ec9e 100644 --- a/src/components/Navbar.tsx +++ b/src/components/Navbar.tsx @@ -14,17 +14,17 @@ export default function Navbar() { - + TAP Cap Table Github - + Documentation - + YouTube Videos From cc0255c306bc062835c5ce2a4f7390a5f8b085e6 Mon Sep 17 00:00:00 2001 From: Alex Palmer <24211477+ThatAlexPalmer@users.noreply.github.com> Date: Wed, 3 Jan 2024 14:24:42 -0500 Subject: [PATCH 3/8] Install React GTM module --- package.json | 1 + src/pages/_app.tsx | 9 +++++++++ yarn.lock | 5 +++++ 3 files changed, 15 insertions(+) diff --git a/package.json b/package.json index 3711130..28c635f 100644 --- a/package.json +++ b/package.json @@ -22,6 +22,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" }, diff --git a/src/pages/_app.tsx b/src/pages/_app.tsx index 4ec5410..84d7f83 100644 --- a/src/pages/_app.tsx +++ b/src/pages/_app.tsx @@ -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"; @@ -60,6 +62,13 @@ export default function App({ Component, pageProps }: AppProps & { Component: Ne + <> + {useEffect(() => { + // Google Tag Manager for the Transfer Agent Protocol property and Clearbit + TagManager.initialize({ gtmId: "GTM-T976LRGP" }); + }, [])} + + diff --git a/yarn.lock b/yarn.lock index c28d183..d1528ef 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1997,6 +1997,11 @@ react-dom@^18.2.0: loose-envify "^1.1.0" scheduler "^0.23.0" +react-gtm-module@^2.0.11: + version "2.0.11" + resolved "https://registry.yarnpkg.com/react-gtm-module/-/react-gtm-module-2.0.11.tgz#14484dac8257acd93614e347c32da9c5ac524206" + integrity sha512-8gyj4TTxeP7eEyc2QKawEuQoAZdjKvMY4pgWfycGmqGByhs17fR+zEBs0JUDq4US/l+vbTl+6zvUIx27iDo/Vw== + react-is@^16.13.1, react-is@^16.7.0: version "16.13.1" resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" From 533d456adf93b5be617f3440d5dc5db081fc002c Mon Sep 17 00:00:00 2001 From: Alex Palmer <24211477+ThatAlexPalmer@users.noreply.github.com> Date: Wed, 3 Jan 2024 14:25:03 -0500 Subject: [PATCH 4/8] Delete unused page --- src/pages/join.tsx | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 src/pages/join.tsx diff --git a/src/pages/join.tsx b/src/pages/join.tsx deleted file mode 100644 index 098a3eb..0000000 --- a/src/pages/join.tsx +++ /dev/null @@ -1,19 +0,0 @@ -import Head from "next/head"; -import { Content, Heading } from "../components/wrappers"; -import { H1, Blockquote } from "../components/typography"; - -export default function Join() { - return ( - - - Join Us - - -

Join our 2nd founding cohort of builders

-
-
- Read our docs, run our code, tell us what brought you here. We'd love your help improving this stack and infra. -
-
- ); -} From f2209c8787664d28e5dfbca6ae0a275243929adc Mon Sep 17 00:00:00 2001 From: Alex Palmer <24211477+ThatAlexPalmer@users.noreply.github.com> Date: Wed, 3 Jan 2024 14:25:57 -0500 Subject: [PATCH 5/8] Update sitemap --- next-sitemap.config.js | 2 +- next.config.js | 3 --- public/robots.txt | 1 - public/sitemap-0.xml | 3 +-- 4 files changed, 2 insertions(+), 7 deletions(-) diff --git a/next-sitemap.config.js b/next-sitemap.config.js index e266c2c..2c7b5be 100644 --- a/next-sitemap.config.js +++ b/next-sitemap.config.js @@ -11,7 +11,7 @@ const config = { }, { userAgent: "*", - allow: ["/", "/join"], + allow: ["/"], disallow: ["/app*", "/_next/*"], }, ], diff --git a/next.config.js b/next.config.js index 9435b8a..b9bf476 100644 --- a/next.config.js +++ b/next.config.js @@ -8,9 +8,6 @@ const nextConfig = { compiler: { styledComponents: true, }, - serverRuntimeConfig: { - SLACK_WEBHOOK_URL: process.env.SLACK_WEBHOOK_URL, - }, }; module.exports = nextConfig; diff --git a/public/robots.txt b/public/robots.txt index cd88466..ecfc6d3 100644 --- a/public/robots.txt +++ b/public/robots.txt @@ -5,7 +5,6 @@ Allow: / # * User-agent: * Allow: / -Allow: /join Disallow: /app* Disallow: /_next/* diff --git a/public/sitemap-0.xml b/public/sitemap-0.xml index b835861..3a539fd 100644 --- a/public/sitemap-0.xml +++ b/public/sitemap-0.xml @@ -1,5 +1,4 @@ -https://transferagentprotocol.xyz2023-09-18T20:46:53.296Zdaily0.7 -https://transferagentprotocol.xyz/join2023-09-18T20:46:53.296Zdaily0.7 +https://transferagentprotocol.xyz2024-01-03T19:25:42.544Zdaily0.7 \ No newline at end of file From 4bbb38d01f2ab7efff3285826c7b29c77b80ff5f Mon Sep 17 00:00:00 2001 From: Alex Palmer <24211477+ThatAlexPalmer@users.noreply.github.com> Date: Wed, 3 Jan 2024 14:37:24 -0500 Subject: [PATCH 6/8] Update links and deps --- README.md | 4 +- package.json | 5 +-- yarn.lock | 124 +++++++++++++++++++++++++-------------------------- 3 files changed, 66 insertions(+), 67 deletions(-) diff --git a/README.md b/README.md index 2c6c79a..195bcc9 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ # 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 -- [Contributor doc](https://coda.io/d/_drhpwRhDok-/Transfer-Agent-Protocol_sua17) - to read about the project and how to contribute. +- [Contributor doc](https://coda.io/d/_dFoHg0h07Et/Transfer-Agent-Protocol_sua17) - to read about the project and how to contribute. - [Slack](https://transferagentprotocol.slack.com/) - invite only for now. ## Contributing diff --git a/package.json b/package.json index 28c635f..577eb48 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,9 @@ { - "name": "app-scaffold", + "name": "tap-app", "version": "4.0.0", "private": true, - "author": "Alex Palmer ", "license": "UNLICENSED", - "description": "Poet's frontend scaffold for web apps", + "description": "TAP's frontend", "scripts": { "dev": "next dev", "build": "next build", diff --git a/yarn.lock b/yarn.lock index d1528ef..0af7a0b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7,20 +7,20 @@ resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf" integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA== -"@babel/code-frame@^7.22.13": - version "7.22.13" - resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.22.13.tgz#e3c1c099402598483b7a8c46a721d1038803755e" - integrity sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w== +"@babel/code-frame@^7.22.13", "@babel/code-frame@^7.23.5": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.23.5.tgz#9009b69a8c602293476ad598ff53e4562e15c244" + integrity sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA== dependencies: - "@babel/highlight" "^7.22.13" + "@babel/highlight" "^7.23.4" chalk "^2.4.2" -"@babel/generator@^7.22.15": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.22.15.tgz#1564189c7ec94cb8f77b5e8a90c4d200d21b2339" - integrity sha512-Zu9oWARBqeVOW0dZOjXc3JObrzuqothQ3y/n1kUtrjCoCPLkXUwMvOo/F/TCfoHMbWIFlWwpZtkZVb9ga4U2pA== +"@babel/generator@^7.23.6": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.6.tgz#9e1fca4811c77a10580d17d26b57b036133f3c2e" + integrity sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw== dependencies: - "@babel/types" "^7.22.15" + "@babel/types" "^7.23.6" "@jridgewell/gen-mapping" "^0.3.2" "@jridgewell/trace-mapping" "^0.3.17" jsesc "^2.5.1" @@ -32,18 +32,18 @@ dependencies: "@babel/types" "^7.22.5" -"@babel/helper-environment-visitor@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz#f06dd41b7c1f44e1f8da6c4055b41ab3a09a7e98" - integrity sha512-XGmhECfVA/5sAt+H+xpSg0mfrHq6FzNr9Oxh7PSEBBRUb/mL7Kz3NICXb194rCqAEdxkhPT1a88teizAFyvk8Q== +"@babel/helper-environment-visitor@^7.22.20": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167" + integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== -"@babel/helper-function-name@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.22.5.tgz#ede300828905bb15e582c037162f99d5183af1be" - integrity sha512-wtHSq6jMRE3uF2otvfuD3DIvVhOsSNshQl0Qrd7qC9oQJzHvOL4qQXlQn2916+CXGywIjpGuIkoyZRRxHPiNQQ== +"@babel/helper-function-name@^7.23.0": + version "7.23.0" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759" + integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw== dependencies: - "@babel/template" "^7.22.5" - "@babel/types" "^7.22.5" + "@babel/template" "^7.22.15" + "@babel/types" "^7.23.0" "@babel/helper-hoist-variables@^7.22.5": version "7.22.5" @@ -71,34 +71,34 @@ dependencies: "@babel/types" "^7.22.5" -"@babel/helper-string-parser@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.22.5.tgz#533f36457a25814cf1df6488523ad547d784a99f" - integrity sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw== +"@babel/helper-string-parser@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz#9478c707febcbbe1ddb38a3d91a2e054ae622d83" + integrity sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ== -"@babel/helper-validator-identifier@^7.22.15", "@babel/helper-validator-identifier@^7.22.5": - version "7.22.15" - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.15.tgz#601fa28e4cc06786c18912dca138cec73b882044" - integrity sha512-4E/F9IIEi8WR94324mbDUMo074YTheJmd7eZF5vITTeYchqAi6sYXRLHUVsmkdmY4QjfKTcB2jB7dVP3NaBElQ== +"@babel/helper-validator-identifier@^7.22.20": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" + integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== -"@babel/highlight@^7.22.13": - version "7.22.13" - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.13.tgz#9cda839e5d3be9ca9e8c26b6dd69e7548f0cbf16" - integrity sha512-C/BaXcnnvBCmHTpz/VGZ8jgtE2aYlW4hxDhseJAWZb7gqGM/qtCK6iZUb0TyKFf7BOUsBH7Q7fkRsDRhg1XklQ== +"@babel/highlight@^7.23.4": + version "7.23.4" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.23.4.tgz#edaadf4d8232e1a961432db785091207ead0621b" + integrity sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A== dependencies: - "@babel/helper-validator-identifier" "^7.22.5" + "@babel/helper-validator-identifier" "^7.22.20" chalk "^2.4.2" js-tokens "^4.0.0" -"@babel/parser@^7.22.15", "@babel/parser@^7.22.16": - version "7.22.16" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.16.tgz#180aead7f247305cce6551bea2720934e2fa2c95" - integrity sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA== +"@babel/parser@^7.22.15", "@babel/parser@^7.23.6": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.6.tgz#ba1c9e512bda72a47e285ae42aff9d2a635a9e3b" + integrity sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ== "@babel/plugin-syntax-jsx@^7.22.5": - version "7.22.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz#a6b68e84fb76e759fc3b93e901876ffabbe1d918" - integrity sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg== + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz#8f2e4f8a9b5f9aa16067e142c1ac9cd9f810f473" + integrity sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg== dependencies: "@babel/helper-plugin-utils" "^7.22.5" @@ -109,7 +109,7 @@ dependencies: regenerator-runtime "^0.14.0" -"@babel/template@^7.22.5": +"@babel/template@^7.22.15": version "7.22.15" resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.22.15.tgz#09576efc3830f0430f4548ef971dde1350ef2f38" integrity sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w== @@ -119,28 +119,28 @@ "@babel/types" "^7.22.15" "@babel/traverse@^7.4.5": - version "7.22.17" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.17.tgz#b23c203ab3707e3be816043081b4a994fcacec44" - integrity sha512-xK4Uwm0JnAMvxYZxOVecss85WxTEIbTa7bnGyf/+EgCL5Zt3U7htUpEOWv9detPlamGKuRzCqw74xVglDWpPdg== - dependencies: - "@babel/code-frame" "^7.22.13" - "@babel/generator" "^7.22.15" - "@babel/helper-environment-visitor" "^7.22.5" - "@babel/helper-function-name" "^7.22.5" + version "7.23.7" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.7.tgz#9a7bf285c928cb99b5ead19c3b1ce5b310c9c305" + integrity sha512-tY3mM8rH9jM0YHFGyfC0/xf+SB5eKUu7HPj7/k3fpi9dAlsMc5YbQvDi0Sh2QTPXqMhyaAtzAr807TIyfQrmyg== + dependencies: + "@babel/code-frame" "^7.23.5" + "@babel/generator" "^7.23.6" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-function-name" "^7.23.0" "@babel/helper-hoist-variables" "^7.22.5" "@babel/helper-split-export-declaration" "^7.22.6" - "@babel/parser" "^7.22.16" - "@babel/types" "^7.22.17" - debug "^4.1.0" + "@babel/parser" "^7.23.6" + "@babel/types" "^7.23.6" + debug "^4.3.1" globals "^11.1.0" -"@babel/types@^7.22.15", "@babel/types@^7.22.17", "@babel/types@^7.22.5": - version "7.22.17" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.17.tgz#f753352c4610ffddf9c8bc6823f9ff03e2303eee" - integrity sha512-YSQPHLFtQNE5xN9tHuZnzu8vPr61wVTBZdfv1meex1NBosa4iT05k/Jw06ddJugi4bk7The/oSwQGFcksmEJQg== +"@babel/types@^7.22.15", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.23.6": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.6.tgz#be33fdb151e1f5a56877d704492c240fc71c7ccd" + integrity sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg== dependencies: - "@babel/helper-string-parser" "^7.22.5" - "@babel/helper-validator-identifier" "^7.22.15" + "@babel/helper-string-parser" "^7.23.4" + "@babel/helper-validator-identifier" "^7.22.20" to-fast-properties "^2.0.0" "@corex/deepmerge@^4.0.43": @@ -246,9 +246,9 @@ integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== "@jridgewell/trace-mapping@^0.3.17", "@jridgewell/trace-mapping@^0.3.9": - version "0.3.19" - resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz#f8a3249862f91be48d3127c3cfe992f79b4b8811" - integrity sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw== + version "0.3.20" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz#72e45707cf240fa6b081d0366f8265b0cd10197f" + integrity sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q== dependencies: "@jridgewell/resolve-uri" "^3.1.0" "@jridgewell/sourcemap-codec" "^1.4.14" @@ -752,7 +752,7 @@ debug@^3.2.7: dependencies: ms "^2.1.1" -debug@^4.1.0, debug@^4.1.1, debug@^4.3.2, debug@^4.3.4: +debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4: version "4.3.4" resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== From 973d141f1494f6e456128dbf5e745b87a74de525 Mon Sep 17 00:00:00 2001 From: Alex Palmer <24211477+ThatAlexPalmer@users.noreply.github.com> Date: Fri, 5 Jan 2024 10:45:02 -0500 Subject: [PATCH 7/8] Transitional copy updates --- src/components/Navbar.tsx | 2 +- src/pages/index.tsx | 49 ++++++++++++++------------------------- 2 files changed, 18 insertions(+), 33 deletions(-) diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx index c52ec9e..cb6a1b9 100644 --- a/src/components/Navbar.tsx +++ b/src/components/Navbar.tsx @@ -19,7 +19,7 @@ export default function Navbar() { - + Documentation diff --git a/src/pages/index.tsx b/src/pages/index.tsx index 1f4365f..a229a13 100644 --- a/src/pages/index.tsx +++ b/src/pages/index.tsx @@ -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 (

Onchain equity protocol.

-

Onramp for in-demand tokenized real world assets.

+

Transfer Agent Infrastructure for tokenizing real-world assets on the blockchain.

Permissionless. Open source. Compliant with transfer agent regulation in the US.

-

Crypto deserves compliant infrastructure for tokenized capital markets. We believe it must be truly open, free, and user-centric.

-

Introducing an open source onchain equity protocol to build web3 equivalents of transfer agents.

-

This infra lets you mint performant equity cap tables onchain.

- Read the full announcement +

Introducing an open source onchain equity protocol to build web3 equivalents of traditional transfer agents.

+

This infra lets you mint performant equity cap tables onchain and handle post-trade settlement of tokenized RWAs.

+

It is based on and is fully compatible with the Open Cap Table format.

+ Read the full announcement

Built by

- Poet + thatalexpalmer.eth + | + vic | - Plural Energy + Plural Energy | - Fairmint + Fairmint

- Build with us + Testnet deployments

- -