diff --git a/docs/documentation/platform/secret-sharing.mdx b/docs/documentation/platform/secret-sharing.mdx index 1b26c0d8e..4e4761924 100644 --- a/docs/documentation/platform/secret-sharing.mdx +++ b/docs/documentation/platform/secret-sharing.mdx @@ -1,10 +1,12 @@ --- title: "Secret Sharing" sidebarTitle: "Secret Sharing" -description: "Learn how to share time-bound secrets securely with anybody on the internet." +description: "Learn how to share time-bound secrets securely with anyone on the internet." --- -Developers often need to share secrets with their team members, contractors, or other third parties. This can be a risky process, as secrets can be easily leaked or misused. Infisical provides a secure way to share secrets with anybody on the internet in a time-bound manner. +Developers frequently need to share secrets with team members, contractors, or other third parties, which can be risky due to potential leaks or misuse. +Infisical offers a secure solution for sharing secrets over the internet in a time-bound manner. +With its zero-knowledge architecture, secrets shared via Infisical remain unreadable even to Infisical itself. ## Share a Secret @@ -16,8 +18,8 @@ Developers often need to share secrets with their team members, contractors, or 3. Click on the **Share Secret** button. - Infisical does not store the secret you share. This is a part of our Zero - Knowledge Architecture. + Infisical does not have access to the shared secrets. This is a part of our zero + knowledge architecture. 4. Enter the secret you want to share and set the expiration time. Click on the **Share Secret** button. @@ -29,7 +31,7 @@ Developers often need to share secrets with their team members, contractors, or tampered with. -5. Copy the link and share it with the intended recipient. Anybody with the link can access the secret before its expiration time. Hence, it is recommended to share the link only with the intended recipient. +5. Copy the link and share it with the intended recipient. Anyone with the link can access the secret before its expiration time. Hence, it is recommended to share the link only with the intended recipient. ![Copy URL](../../images/platform/secret-sharing/copy-url.png) diff --git a/frontend/src/views/ShareSecretPage/ShareSecretPage.tsx b/frontend/src/views/ShareSecretPage/ShareSecretPage.tsx index d6b2b71ac..c4869bded 100644 --- a/frontend/src/views/ShareSecretPage/ShareSecretPage.tsx +++ b/frontend/src/views/ShareSecretPage/ShareSecretPage.tsx @@ -10,7 +10,7 @@ export const ShareSecretPage = () => {

Secret Sharing

-

Share secrets with anybody securely and efficiently

+

Share secrets securely with your teammates using a shareable link

diff --git a/frontend/src/views/ShareSecretPage/components/AddShareSecretModal.tsx b/frontend/src/views/ShareSecretPage/components/AddShareSecretModal.tsx index 2bdbfaf99..00ee27b44 100644 --- a/frontend/src/views/ShareSecretPage/components/AddShareSecretModal.tsx +++ b/frontend/src/views/ShareSecretPage/components/AddShareSecretModal.tsx @@ -168,10 +168,10 @@ export const AddShareSecretModal = ({ popUp, handlePopUpToggle }: Props) => { setnewSharedSecret(""); }} > - + {!hasSharedSecret ? (
{ Share Secret
-
-

- Every secret shared can be accessed with the URL (shown during creation) before its - expiry. -

-
diff --git a/frontend/src/views/ShareSecretPage/components/ShareSecretsTable.tsx b/frontend/src/views/ShareSecretPage/components/ShareSecretsTable.tsx index 166554c7d..6b438f17a 100644 --- a/frontend/src/views/ShareSecretPage/components/ShareSecretsTable.tsx +++ b/frontend/src/views/ShareSecretPage/components/ShareSecretsTable.tsx @@ -61,7 +61,7 @@ export const ShareSecretsTable = ({ handlePopUpOpen }: Props) => { {!isLoading && tableData && tableData?.length === 0 && ( - + )} diff --git a/frontend/src/views/ShareSecretPublicPage/ShareSecretPublicPage.tsx b/frontend/src/views/ShareSecretPublicPage/ShareSecretPublicPage.tsx index e3d6fcabb..618859a80 100644 --- a/frontend/src/views/ShareSecretPublicPage/ShareSecretPublicPage.tsx +++ b/frontend/src/views/ShareSecretPublicPage/ShareSecretPublicPage.tsx @@ -1,7 +1,6 @@ import { useEffect, useMemo, useState } from "react"; import Head from "next/head"; import Image from "next/image"; -import Link from "next/link"; import { useRouter } from "next/router"; import { decryptSymmetric } from "@app/components/utilities/cryptography/crypto"; @@ -90,7 +89,7 @@ export const ShareSecretPublicPage = () => { Infisical logo

- You’ve been shared a secret securely with Infisical. + A secret has been shared with you securely via Infisical

@@ -108,11 +107,6 @@ export const ShareSecretPublicPage = () => { copyUrlToClipboard={copyUrlToClipboard} />
- - - Check Infisical out now! - -