From 0c70cfd0d9447c67c293c5a36576a23802dfebdc Mon Sep 17 00:00:00 2001 From: Hendrik Eeckhaut Date: Fri, 14 Jun 2024 15:46:19 +0200 Subject: [PATCH] Minor changes/fixes + updating use cases --- app/page.tsx | 2 +- content/about.tsx | 2 +- content/homepage.tsx | 4 ++-- content/projects.tsx | 29 +++++++++++++++++------------ 4 files changed, 21 insertions(+), 16 deletions(-) diff --git a/app/page.tsx b/app/page.tsx index ef5ba0e..b942e13 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -88,7 +88,7 @@ export default function Home() { - {LABELS.COMMON.SERVER_AUTHENTICATION} + {LABELS.COMMON.DATA_PORTABILITY} diff --git a/content/about.tsx b/content/about.tsx index d861bdb..cd8e466 100644 --- a/content/about.tsx +++ b/content/about.tsx @@ -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!", }, }; diff --git a/content/homepage.tsx b/content/homepage.tsx index 49adfbf..2413ad0 100644 --- a/content/homepage.tsx +++ b/content/homepage.tsx @@ -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: diff --git a/content/projects.tsx b/content/projects.tsx index 3d4ee76..84115fa 100644 --- a/content/projects.tsx +++ b/content/projects.tsx @@ -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: {}, - }, ];