From d67eed23d2d9f087282e20aa427bf194695b5861 Mon Sep 17 00:00:00 2001 From: BinarySoftware Date: Tue, 15 Oct 2024 06:12:52 +0200 Subject: [PATCH] Privacy section --- src/app/page.tsx | 92 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) diff --git a/src/app/page.tsx b/src/app/page.tsx index a90b69f..2b4e1ec 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1349,6 +1349,97 @@ function Pricing() { ) } +const HighlightedText = ({ children, type }: { children: React.ReactNode, type: 'added' | 'removed' }) => { + const baseStyle = "px-1 rounded font-medium"; + const colorStyle = type === 'removed' ? "bg-red-100 text-red-800" : "bg-green-100 text-green-800"; + return {children}; +}; + +const EmailComparison = () => ( +
+
+

Original Email

+

+ Hello,
+ Your one-time code is 123456.
+ Please call us at +1 (555) 123-4567 if you have any questions.
+ Your account balance is $1,000.
+

+
+
+

Sanitized Email

+

+ Hello,
+ Your one-time code is [1].
+ Please call us at [2] if you have any questions.
+ Your account balance is [3].
+

+
+
+); + +function Privacy() { + return ( +
+ +
+
+

+ Privacy is at our foundation +

+

+ At Blinkfeed, we've built privacy into every aspect of our product. Your data security is not just a feature—it's our core principle. +

+
+ +
+

How We Safeguard Your Information

+
    +
  • + + + + All data is preprocessed and stored locally on your device. +
  • +
  • + + + + Sensitive information is replaced with anonymous hashed values before passing to AI. +
  • +
  • + + + + Only essential, anonymized data is shared with our AI service for processing. +
  • +
  • + + + + We don't store your mails on our servers. +
  • +
+
+ +
+

Email Sanitization in Action

+ +
+ +
+

Enterprise-Grade Security

+

+ For our Enterprise customers, we offer an enhanced privacy solution with on-premises AI processing. + This ensures that your sensitive data never leaves your secure environment. Focus on what matters most, and let Blinkfeed take care of the rest. +

+
+
+
+
+ ); +} + function Testimontials() { const backgroundColor = 'rgba(0,10,0,0.02)' return ( @@ -1474,6 +1565,7 @@ function Example() { +