Initial commit

This commit is contained in:
User
2026-08-14 14:17:48 +02:00
commit 52dc765da4
46 changed files with 6318 additions and 0 deletions
+58
View File
@@ -0,0 +1,58 @@
import { FeatureItem } from '../types';
export const featuresList: FeatureItem[] = [
{
id: 'feat-sso',
title: 'Unified Identity & Single Sign-On',
tagline: 'One Account for 30+ Products',
description: 'Log into BirthdayMessaging.io, SignalDrop, CraftFlow, and all 30+ ecosystem tools with a single passwordless, end-to-end encrypted identity key.',
icon: 'KeyRound',
category: 'Architecture',
highlightText: 'Sub-second Auth'
},
{
id: 'feat-revenue-engine',
title: 'Automated Revenue Buy-Back',
tagline: 'Real Revenue Drives Token Value',
description: 'Unlike speculative coins, net software subscription revenues across the ecosystem automatically buy back and lock $SX tokens in public treasury.',
icon: 'TrendingUp',
category: 'Economics',
highlightText: 'Automated Buy-Back'
},
{
id: 'feat-zero-vc',
title: '100% Community Capital',
tagline: 'Zero Venture Capital Pressure',
description: 'No VC board members demanding aggressive price hikes or user tracking. Built, owned, and guided by software craftspeople and the community.',
icon: 'ShieldAlert',
category: 'Governance',
highlightText: 'Zero VC Dilution'
},
{
id: 'feat-ai-core',
title: 'AI-Powered Orchestration',
tagline: 'Autonomous Workflow Intelligence',
description: 'Deeply integrated LLM models summarize messaging context, optimize delivery timing, and personalize content across all ecosystem touchpoints.',
icon: 'Brain',
category: 'Technology',
highlightText: 'Smart Automation'
},
{
id: 'feat-telemetry',
title: 'Real-Time Transparency Telemetry',
tagline: 'Open Treasury Dashboard',
description: 'Inspect live app metrics, active user subscriptions, daily API call volumes, and smart contract reserves with complete mathematical proof.',
icon: 'Activity',
category: 'Transparency',
highlightText: '100% On-Chain'
},
{
id: 'feat-dev-sdk',
title: 'Developer Extensions & SDK',
tagline: 'Build on Software X Engine',
description: 'Extend the ecosystem with your own micro-SaaS applications using our open-source TypeScript SDK and global CDN edge infrastructure.',
icon: 'Code2',
category: 'Developer Tools',
highlightText: 'TypeScript Native'
}
];