);
}
function Features() {
const features = [
{
icon: Shield,
title: 'Quantum-Resistant',
description: 'Hybrid Ed25519 + Dilithium3 signatures protect against both classical and quantum attacks.',
color: 'from-quantum-500 to-purple-500',
},
{
icon: Zap,
title: 'Lightning Fast',
description: '1-second block times with instant confirmations through DAG-based parallel processing.',
color: 'from-yellow-500 to-orange-500',
},
{
icon: Network,
title: 'DAG Consensus',
description: 'GHOSTDAG allows multiple blocks simultaneously, eliminating orphan blocks and maximizing throughput.',
color: 'from-synor-500 to-cyan-500',
},
{
icon: Code2,
title: 'Smart Contracts',
description: 'Write contracts in Rust, compile to WASM. Full SDK with testing framework included.',
color: 'from-green-500 to-emerald-500',
},
{
icon: Lock,
title: 'Encrypted Storage',
description: 'AES-256-GCM encryption with Argon2 key derivation keeps your assets secure.',
color: 'from-red-500 to-pink-500',
},
{
icon: Layers,
title: 'UTXO Model',
description: 'Proven UTXO transaction model with native support for atomic swaps and multi-sig.',
color: 'from-indigo-500 to-blue-500',
},
];
return (
Built for the Future
Every component designed with security, speed, and scalability in mind.
{features.map((feature, i) => (
{feature.title}
{feature.description}
))}
);
}
function Technology() {
return (
Quantum-Safe
Cryptography
As quantum computers advance, traditional cryptography becomes vulnerable.
Synor uses NIST-approved Dilithium3 lattice-based signatures alongside
Ed25519 for a hybrid approach that's secure today and tomorrow.