import { For } from "solid-js"; import type { JSX } from "solid-js"; import { cn } from "~/lib/utils"; import Card from "~/components/ui/Card"; import PageContainer from "~/components/layout/PageContainer"; function CheckIcon() { return ( ); } function ProactiveIcon() { return ( ); } function AIIcon() { return ( ); } function PrivacyIcon() { return ( ); } interface ValueProp { title: string; description: string; items: string[]; icon: () => JSX.Element; } const valueProps: ValueProp[] = [ { title: "Proactive, Not Reactive", description: "We detect threats before they cause damage, so you can act early.", icon: ProactiveIcon, items: [ "Real-time dark web scanning", "Pre-breach alerts and warnings", "Automated threat response", ], }, { title: "AI-Powered Detection", description: "Machine learning models trained on real scam data to catch the latest threats.", icon: AIIcon, items: [ "Deepfake voice identification", "Pattern-based scam detection", "Continuous model improvement", ], }, { title: "Privacy First", description: "Your data stays encrypted and private. We never sell your information.", icon: PrivacyIcon, items: [ "End-to-end encrypted data", "GDPR and CCPA compliant", "Zero data selling policy", ], }, ]; interface ValueCardProps { prop: ValueProp; } function ValueCard(props: ValueCardProps) { const Icon = props.prop.icon; return (

{props.prop.title}

{props.prop.description}

); } interface WhyKordantSectionProps { class?: string; } export default function WhyKordantSection(props: WhyKordantSectionProps) { return (

Why Kordant

Built on cutting-edge technology with your privacy at the core

{(prop) => }
); }