import { motion } from 'framer-motion'; import { Shield, Zap, Network, Code2, Wallet, BarChart3, Github, Twitter, MessageCircle, ArrowRight, Lock, Layers, Globe, Cpu, FileCode, BookOpen, } from 'lucide-react'; function App() { return (
); } function Header() { return (
); } function Hero() { return (
{/* Background effects */}
{/* Grid pattern */}
Quantum-Resistant Security

The Blockchain for the
Post-Quantum Era

Synor combines DAG-based consensus with quantum-resistant cryptography to deliver blazing-fast transactions that will remain secure for decades.

{/* Tech badges */}
{['GHOSTDAG Consensus', 'Dilithium3 Signatures', 'WASM Smart Contracts', '1s Block Time'].map((tech) => ( {tech} ))}
); } 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.

{[ { label: 'Ed25519', desc: 'Fast classical signatures for everyday use' }, { label: 'Dilithium3', desc: 'Quantum-resistant lattice cryptography' }, { label: 'Hybrid Mode', desc: 'Both signatures for maximum security' }, ].map((item) => (
{item.label} - {item.desc}
))}
{/* Code preview */}
signature.rs
                
{`// Hybrid quantum-resistant signature
pub struct HybridSignature {
    ed25519: Ed25519Signature,
    dilithium: DilithiumSignature,
}

impl HybridSignature {
    pub fn sign(msg: &[u8], keypair: &HybridKeypair)
        -> Self
    {
        Self {
            ed25519: keypair.ed25519.sign(msg),
            dilithium: keypair.dilithium.sign(msg),
        }
    }

    pub fn verify(&self, msg: &[u8], pubkey: &HybridPubkey)
        -> bool
    {
        self.ed25519.verify(msg, &pubkey.ed25519)
            && self.dilithium.verify(msg, &pubkey.dilithium)
    }
}`}
                
              
); } function Ecosystem() { const apps = [ { icon: Wallet, title: 'Web Wallet', description: 'Browser-based wallet with QR codes, hardware support, and 6 languages.', url: 'https://wallet.synor.cc', status: 'Live', }, { icon: Cpu, title: 'Desktop Wallet', description: 'Native app for macOS, Windows, and Linux with system tray integration.', url: '#', status: 'Download', }, { icon: BarChart3, title: 'Block Explorer', description: 'Real-time blockchain explorer with 3D DAG visualization.', url: 'https://explorer.synor.cc', status: 'Live', }, { icon: FileCode, title: 'Contract SDK', description: 'Full Rust SDK for building and testing smart contracts.', url: 'https://docs.synor.cc/contracts', status: 'Docs', }, { icon: Globe, title: 'Public API', description: 'Rate-limited RPC access with free, developer, and enterprise tiers.', url: 'https://api.synor.cc', status: 'API', }, { icon: BookOpen, title: 'Tutorials', description: 'Step-by-step guides from Hello World to DeFi staking pools.', url: 'https://docs.synor.cc/tutorials', status: 'Learn', }, ]; return (

Complete Ecosystem

Everything you need to build, deploy, and interact with Synor.

{apps.map((app, i) => (
{app.status}

{app.title}

{app.description}

))}
); } function Stats() { const stats = [ { value: '1s', label: 'Block Time' }, { value: '10K+', label: 'TPS Capacity' }, { value: '100%', label: 'Uptime' }, { value: '0', label: 'Security Incidents' }, ]; return (
{stats.map((stat, i) => (
{stat.value}
{stat.label}
))}
); } function CTA() { return (

Ready to Build?

Join the quantum-secure future. Start building on Synor today.

Create Wallet Follow Tutorial
); } function Footer() { return ( ); } export default App;