import React, { useState, useEffect } from 'react';
import { Activity, Dna, Brain, Shield, ChevronRight, Zap, Heart, Fingerprint, Microchip, ActivitySquare } from 'lucide-react';
export default function VexalisHealth() {
const [pulse, setPulse] = useState(64);
const [scrolled, setScrolled] = useState(false);
// Simulate a live heartbeat/metric update for that "alive" futuristic feel
useEffect(() => {
const interval = setInterval(() => {
setPulse(prev => prev + (Math.floor(Math.random() * 5) - 2));
}, 2000);
return () => clearInterval(interval);
}, []);
// Handle scroll for nav blurring
useEffect(() => {
const handleScroll = () => setScrolled(window.scrollY > 50);
window.addEventListener('scroll', handleScroll);
return () => window.removeEventListener('scroll', handleScroll);
}, []);
// Injecting custom fonts to match your sexy vibe perfectly
const fontStyles = `
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Urbanist:wght@300;400;600&family=JetBrains+Mono:wght@100..800&display=swap');
.font-serif-display { font-family: 'Playfair Display', serif; }
.font-urbanist { font-family: 'Urbanist', sans-serif; }
.font-mono { font-family: 'JetBrains Mono', monospace; }
.cyber-grid {
background-image: linear-gradient(to right, rgba(0, 255, 170, 0.05) 1px, transparent 1px),
linear-gradient(to bottom, rgba(0, 255, 170, 0.05) 1px, transparent 1px);
background-size: 40px 40px;
}
`;
return (
{/* Persistent Cyber Grid */}
{/* Floating Header */}
{/* --- HERO SECTION --- */}
{/* Glowing orb behind text */}
Protocol Active
Precision
Longevity.
Vexalis Health collapses the boundary between biological constraints and computational edge. Your cellular infrastructure, visualized and optimized.
{/* --- BIOMETRIC COMMAND CENTER (The "Practical" Bento Grid) --- */}
REAL-TIME NEURAL AND SOMATIC DATA AGGREGATION. ZERO LATENCY.
{/* Main Metric Card */}
Cardiovascular Sync
{pulse}
BPM
{/* Mock Graph */}
{[...Array(40)].map((_, i) => (
0.5 ? 0.8 : 0.3
}}
>
))}
{/* Neural Load Card */}
Optimal
Neuro-Plasticity
Synaptic response times operating at peak human baseline +14%.
{/* DNA Sequence Card */}
Genomic Patch
v2.4.1 Installed
{/* Security Protocol */}
Military-Grade Encryption
Your biological data is secured via quantum-resistant tunneling.
{/* --- FOOTER (Adapted directly from your style) --- */}
);
}