Skip to content

Commit

Permalink
Minor changes/fixes + updating use cases
Browse files Browse the repository at this point in the history
  • Loading branch information
heeckhau committed Jun 14, 2024
1 parent 657c2f2 commit 0c70cfd
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 16 deletions.
2 changes: 1 addition & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 />
Expand Down
2 changes: 1 addition & 1 deletion content/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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!",
},
};
4 changes: 2 additions & 2 deletions content/homepage.tsx
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
29 changes: 17 additions & 12 deletions content/projects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
Expand All @@ -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.",
Expand All @@ -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: {},
},
];

0 comments on commit 0c70cfd

Please sign in to comment.