rebranding

This commit is contained in:
2026-05-25 22:49:37 -04:00
parent b62ab77fbe
commit 3d246af3f7
210 changed files with 1307 additions and 712 deletions

View File

@@ -1,6 +1,6 @@
# Spam & ID Protection Product Plan
## Product Name: ShieldAI
## Product Name: Kordant
### Vision
Protect individuals from predatory AI-driven scams through multi-layered identity protection.
@@ -13,7 +13,7 @@ Protect individuals from predatory AI-driven scams through multi-layered identit
## Product Tiers
### 1. ShieldAI Basic (Free)
### 1. Kordant Basic (Free)
**Purpose:** Traffic driver, entry point
**Features:**
@@ -30,7 +30,7 @@ Protect individuals from predatory AI-driven scams through multi-layered identit
---
### 2. ShieldAI Plus ($9.99/month)
### 2. Kordant Plus ($9.99/month)
**Purpose:** Core protection for individuals
**Features:**
@@ -47,7 +47,7 @@ Protect individuals from predatory AI-driven scams through multi-layered identit
---
### 3. ShieldAI Premium ($24.99/month)
### 3. Kordant Premium ($24.99/month)
**Purpose:** Comprehensive identity protection
**Features:**

View File

@@ -1,8 +1,8 @@
# ShieldAI Technical Architecture & Implementation Plan
# Kordant Technical Architecture & Implementation Plan
## 1. System Overview
ShieldAI is a multi-service SaaS platform with three core engines:
Kordant is a multi-service SaaS platform with three core engines:
1. **VoicePrint** — voice cloning detection and synthetic voice analysis
2. **DarkWatch** — dark web exposure monitoring and alerting

View File

@@ -2,19 +2,19 @@
## Overview
This document describes how to integrate the waitlist email templates into the waitlist signup flow. The 4-email welcome sequence is designed for new ShieldAI waitlist signups.
This document describes how to integrate the waitlist email templates into the waitlist signup flow. The 4-email welcome sequence is designed for new Kordant waitlist signups.
## Templates Added
| # | Template ID | Timing | Purpose |
|---|---|---|---|
| 1 | `waitlist_confirmation` | Immediate | Confirm waitlist signup, show position |
| 2 | `waitlist_intro` | Day +1 | Introduce ShieldAI and the problem it solves |
| 2 | `waitlist_intro` | Day +1 | Introduce Kordant and the problem it solves |
| 3 | `waitlist_features` | Day +3 | Deep dive into product features |
| 4 | `waitlist_launch_teaser` | Day +7 | Launch teaser, early adopter perks |
**File:** `packages/shared-notifications/src/templates/default-templates.ts`
- All 4 templates use `buildEmailHtml()` from `waitlist-email-layout.ts` for consistent dark-themed, responsive HTML email rendering with the ShieldAI brand (Inter font, #0a0f1e dark background, #3b82f6#06b6d4 gradient accent).
- All 4 templates use `buildEmailHtml()` from `waitlist-email-layout.ts` for consistent dark-themed, responsive HTML email rendering with the Kordant brand (Inter font, #0a0f1e dark background, #3b82f6#06b6d4 gradient accent).
- Spanish locale (`es`) is provided for template 1.
## Variables per Template
@@ -24,26 +24,26 @@ This document describes how to integrate the waitlist email templates into the w
|---|---|---|---|
| `name` | string | no | "there" |
| `position` | string | **yes** | — |
| `unsubscribe_url` | string | no | `https://shieldai.com/unsubscribe` |
| `unsubscribe_url` | string | no | `https://kordant.com/unsubscribe` |
### `waitlist_intro`
| Variable | Type | Required | Default |
|---|---|---|---|
| `name` | string | no | "there" |
| `unsubscribe_url` | string | no | `https://shieldai.com/unsubscribe` |
| `unsubscribe_url` | string | no | `https://kordant.com/unsubscribe` |
### `waitlist_features`
| Variable | Type | Required | Default |
|---|---|---|---|
| `name` | string | no | "there" |
| `unsubscribe_url` | string | no | `https://shieldai.com/unsubscribe` |
| `unsubscribe_url` | string | no | `https://kordant.com/unsubscribe` |
### `waitlist_launch_teaser`
| Variable | Type | Required | Default |
|---|---|---|---|
| `name` | string | no | "there" |
| `referral_url` | string | no | `https://shieldai.com/waitlist` |
| `unsubscribe_url` | string | no | `https://shieldai.com/unsubscribe` |
| `referral_url` | string | no | `https://kordant.com/waitlist` |
| `unsubscribe_url` | string | no | `https://kordant.com/unsubscribe` |
## Integration Points