import React, { useState } from 'react'; import { Menu, X, Radio, Cpu, Smartphone, Brain, Mail, ShieldCheck, Activity, Server, MapPin, ChevronRight, ArrowRight } from 'lucide-react'; const CybazWebsite = () => { const [isMenuOpen, setIsMenuOpen] = useState(false); const navigation = [ { name: 'Services', href: '#services' }, { name: 'Expertise', href: '#expertise' }, { name: 'About', href: '#about' }, { name: 'Contact', href: '#contact' }, ]; const services = [ { title: 'RF Engineering', description: '20+ years of specialized experience in RF code, design, and system testing. Bridging hardware constraints with software flexibility.', icon: Radio, color: 'text-blue-500' }, { title: 'AI Transformation', description: 'Helping Phoenix-area businesses pivot to an "AI First" strategy. We implement practical AI solutions to automate and optimize workflows.', icon: Brain, color: 'text-purple-500' }, { title: 'Gov & Infrastructure', description: '10+ years delivering high-reliability UI and software infrastructure for small businesses, cities, and federal government contracts.', icon: Server, color: 'text-slate-500' }, { title: 'Mobile Development', description: 'Native and cross-platform application development for Android and iOS. Custom apps tailored to your business logic.', icon: Smartphone, color: 'text-green-500' } ]; const stats = [ { label: 'RF Experience', value: '20+ Years' }, { label: 'Gov/UI Projects', value: '10+ Years' }, { label: 'Location', value: 'Phoenix, AZ' }, { label: 'Focus', value: 'AI First' }, ]; return (
{/* Navigation */} {/* Hero Section */}
{/* Abstract Background Element */}
Accepting New Contracts

Engineering the Future of
RF, Software & AI

We provide expert contracting for mission-critical RF systems, government infrastructure, and AI-driven business transformation in the Phoenix area.

{/* Stats Bar */}
{stats.map((stat, index) => (
{stat.value}
{stat.label}
))}
{/* Services Section */}

Core Competencies

Technical Solutions for Complex Problems

From low-level RF code to high-level AI strategies.

{services.map((service, index) => (

{service.title}

{service.description}

))}
{/* Expertise & Authority Section */}
Proven Reliability

Decades of Experience in High-Stakes Environments

At Cybaz Solutions, we don't just write code; we engineer systems. With a background deeply rooted in Radio Frequency (RF) fields, we understand the rigorous demands of hardware interaction, system testing, and signal processing.

Our portfolio includes critical work with Federal Government agencies and City municipalities, ensuring that UI and software infrastructure is secure, accessible, and robust.

Now, we are bringing this enterprise-grade discipline to small businesses in Phoenix, empowering them with AI-first strategies.

{['System Design', 'Signal Processing', 'Compliance', 'UI/UX for Gov'].map((item) => (
{item}
))}

Local Partner

Based in Phoenix, Arizona

Government & Federal

Experience adhering to strict federal standards for software and UI accessibility.

RF & Hardware

Deep understanding of the physical layer, coding for devices, and comprehensive system testing.

{/* App Portfolio Teaser */}

Custom Mobile Applications

We build high-performance iOS and Android applications.
Full portfolio of proprietary apps coming soon.

Dev & Freelance Available
{/* Contact Section */}

Ready to Optimize Your Systems?

Whether you need RF expertise, government-grade UI infrastructure, or an AI strategy for your Phoenix business, Cybaz Solutions delivers.

General Inquiries

info@cybazsolutions.com

Technical Support

support@cybazsolutions.com

{/* Footer */}
); }; export default CybazWebsite;