Skip to content

Commit

Permalink
add diagram image
Browse files Browse the repository at this point in the history
  • Loading branch information
kalidiagne committed Apr 12, 2024
1 parent 5fa3bb9 commit 0066c55
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
5 changes: 5 additions & 0 deletions components/AppMarkdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ const createMarkdownElement = (tag: keyof JSX.IntrinsicElements, props: any) =>

// Styling for HTML attributes for markdown component
const REACT_MARKDOWN_CONFIG: Components = {
img: ({ node, ...props }) =>
createMarkdownElement("img", {
className: "py-10 w-full",
...props,
}),
a: ({ node, ...props }) =>
createMarkdownElement("a", {
className: "text-orange",
Expand Down
6 changes: 4 additions & 2 deletions content/about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@ export const ABOUT_CONTENT = {
},
HOW_IT_WORKS: {
TITLE: "How it works",
DESCRIPTION:
"TLSNotary is a protocol which allows people to export data from any web application and prove facts about it to a third-party in a privacy-preserving way by leveraging secure multi-party computation (MPC) to authenticate data communicated between a Prover and a TLS-enabled web server.",
DESCRIPTION: `TLSNotary is a protocol which allows people to export data from any web application and prove facts about it to a third-party in a privacy-preserving way by leveraging secure multi-party computation (MPC) to authenticate data communicated between a Prover and a TLS-enabled web server.
<img src="/images/ts-notaly-diagram.svg" />
`,

STEPS: [
{
TITLE: "Step 1: Multiparty TLS Request",
Expand Down
4 changes: 4 additions & 0 deletions public/images/ts-notaly-diagram.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 0066c55

Please sign in to comment.