Minor changes/fixes + updating use cases

This commit is contained in:
Hendrik Eeckhaut
2024-06-14 15:46:19 +02:00
parent 657c2f29b8
commit 0c70cfd0d9
4 changed files with 21 additions and 16 deletions

View File

@@ -88,7 +88,7 @@ export default function Home() {
<ComparisonTable title="Data Integrity" tls tlsNotary />
<TableContent>
<TableTitle>{LABELS.COMMON.SERVER_AUTHENTICATION}</TableTitle>
<TableTitle>{LABELS.COMMON.DATA_PORTABILITY}</TableTitle>
</TableContent>
<ComparisonTable title="Trustless" tls={false} tlsNotary />
<ComparisonTable title="Privacy Preserving" tls={false} tlsNotary />

View File

@@ -38,6 +38,6 @@ export const ABOUT_CONTENT = {
GET_INVOLVED: {
TITLE: "Get involved",
DESCRIPTION:
"An alpha version of the TLSNotary protocol is available for testing. We welcome folks to start playing around with it, including trying to break it!\n\nBoth codebases are 100% Rust and compile to WASM targets with an eye on deployment into browser environments.All our code is and always will be open source! Dual-licensed under Apache 2 and MIT, at your choice.\n\nWe've invested effort into making sure our code is modular and capable of evolving. We hope that others may find some of the components independently interesting and useful. Contributions are welcome!",
"An alpha version of the TLSNotary protocol is available for testing. We welcome folks to start playing around with it, including trying to break it!\n\nBoth codebases are 100% Rust and compile to WASM targets with an eye on deployment into browser environments. All our code is and always will be open source! Dual-licensed under Apache 2 and MIT, at your choice.\n\nWe've invested effort into making sure our code is modular and capable of evolving. We hope that others may find some of the components independently interesting and useful. Contributions are welcome!",
},
};

View File

@@ -1,8 +1,8 @@
export const HOMEPAGE_CONTENT = {
TITLE: "Privacy-preserving data portability for any data on the web",
TITLE: "Privacy-preserving data portability",
SUBTITLE: "TLSNotary",
DESCRIPTION:
" TLSNotary is an open-source protocol that can verify the authenticity of data while protecting privacy. If you're looking for a way to make data portable without compromising on security, check out the protocol and integrate it into your applications!",
" TLSNotary is an open-source protocol that can verify the authenticity of TLS data while protecting privacy. If you're looking for a way to make data portable without compromising on security, check out the protocol and integrate it into your applications!",
BUILD_WITH_US: {
TITLE: "Build with us",
DESCRIPTION:

View File

@@ -7,6 +7,23 @@ type Project = {
};
export const ProjectList: Project[] = [
{
title: "ZKP2p",
tldr: "Completely peer-to-peer leveraging everyday payment networks",
links: {
// website: "https://zkp2p.xyz/",
twitter: "https://x.com/zkp2p",
github: "https://github.com/zkp2p",
},
},
{
title: "OpenLayer/Jomo Labs",
tldr: "Scale web3 through optimistic verifiable computation",
links: {
twitter: "https://x.com/OpenLayerHQ",
},
},
{
title: "ZeroTrustBounty",
tldr: "A trustless bug bounty platform with redacted bug reports & guaranteed payments to whitehats.",
@@ -21,13 +38,6 @@ export const ProjectList: Project[] = [
github: "https://github.com/chcharcharlie/realreturn",
},
},
{
title: "zkP2M",
tldr: "Trustless and instant INR to USD on-ramp powered by ZK",
links: {
github: "https://github.com/zkP2M",
},
},
{
title: "ComplianceNoted",
tldr: "Compliance for on-chain private equity: manage a portfolio or a fund with an array of accounts and breathe through client reporting and compliance requirements! Privacy, efficiency and portability all in place.",
@@ -40,9 +50,4 @@ export const ProjectList: Project[] = [
github: "https://github.com/dingchaoz/ZEROGUARD",
},
},
{
title: "Zkyc",
tldr: "Trustless and instant INR to USD on-ramp powered by ZK",
links: {},
},
];