59 lines
2.3 KiB
TypeScript
59 lines
2.3 KiB
TypeScript
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'
|
|
}
|
|
];
|