diff --git a/app/about/page.tsx b/app/about/page.tsx index b958b25..d88875e 100644 --- a/app/about/page.tsx +++ b/app/about/page.tsx @@ -1,37 +1,161 @@ -export default function AboutPage() { +'use client' + +import { CheckCircleIcon, XIcon } from '@ciphera-net/ui' + +function ComparisonTable({ title, competitors }: { title: string, competitors: { name: string, isPulse: boolean, features: Record }[] }) { + const allFeatures = [ + "Cookie Banner Required", + "GDPR Compliant", + "Script Size", + "Data Ownership", + "User Privacy", + "UI Simplicity" + ] + return ( -
-

- About Pulse -

- -
-

- Pulse is a privacy-first web analytics platform that provides simple, - intuitive insights without compromising your visitors' privacy. -

- -

- Privacy-First Design -

-

- We believe in privacy by design. Our analytics platform: -

-
    -
  • Uses no cookies or cross-session identifiers; sessionStorage is used only to group events within a single visit
  • -
  • Respects Do Not Track preferences
  • -
  • Complies with GDPR and CCPA regulations
  • -
  • Does not collect personal data
  • -
  • Processes data anonymously
  • -
- -

- Simple & Lightweight -

-

- Our tracking script is lightweight and won't slow down your website. - Get the insights you need without the bloat. -

+
+

{title}

+
+ + + + + {competitors.map((comp) => ( + + ))} + + + + {allFeatures.map((feature) => ( + + + {competitors.map((comp) => { + const val = comp.features[feature] + return ( + + ) + })} + + ))} + +
Feature + {comp.name} +
{feature} + {val === true ? ( + + ) : val === false ? ( + + ) : ( + {val} + )} +
+
+
+ ) +} + +export default function AboutPage() { + return ( +
+ {/* * --- ATMOSPHERE (Background) --- */} +
+
+
+
+
+ +
+
+

+ Why Pulse? +

+

+ We built Pulse because we were tired of complex, invasive analytics tools. + Here is how we stack up against the giants. +

+
+ +
+

+ Most analytics tools are overkill. They track everything, slow down your site, and require annoying cookie banners. + Pulse is different. We focus on the metrics that actually matter—visitors, pageviews, and sources—while respecting user privacy. +

+
+ + {/* * Comparison: Pulse vs Google Analytics */} + + + {/* * Comparison: Pulse vs Plausible */} + + +
+

What about Plausible?

+

+ We love Plausible! They paved the way for privacy-friendly analytics. + Pulse offers a similar philosophy but with a focus on even deeper integration with the Ciphera ecosystem + and more flexible pricing for developers. +

+
+
)