'use client' import { motion } from 'framer-motion' 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 (

{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.

) }