import React, { useState } from 'react'; import { Shield, Lock, FileCheck, Video, Package, Menu, X, ChevronRight } from 'lucide-react'; const BookEmBotWebsite = () => { const [currentPage, setCurrentPage] = useState('home'); const [mobileMenuOpen, setMobileMenuOpen] = useState(false); // Content management system const [content, setContent] = useState({ home: { title: "NIST-Compliant AI-Powered Booking System", subtitle: "Streamline arrestee processing with intelligent automation and uncompromising security", description: "Book 'Em Bot leverages artificial intelligence to assist law enforcement agencies in efficient, accurate, and compliant arrestee booking procedures. Our system maintains complete chain of custody documentation while reducing administrative burden on officers.", videoUrl: "https://www.youtube.com/embed/demo-video-1" }, booking: { title: "Intelligent Booking Software", subtitle: "AI-Assisted Arrestee Processing & Documentation", description: "Our booking software automates data collection and validation during arrestee intake. The AI assistant guides officers through NIST-compliant procedures, capturing biometric data, demographic information, and charge documentation. Real-time validation ensures accuracy and completeness while maintaining full audit trails for legal compliance.", features: [ "Biometric capture and verification", "Automated warrant checking", "Digital fingerprint integration", "Real-time NCIC/state database queries", "Customizable booking workflows", "Multi-jurisdiction support" ], videoUrl: "https://www.youtube.com/embed/demo-video-2" }, holding: { title: "Secure Holding Video System", subtitle: "Continuous Monitoring & Evidence Documentation", description: "Our holding video system provides tamper-proof recording and storage of detainee monitoring footage. Chain of custody is automatically maintained for all video evidence, with timestamps, metadata, and access logs meeting federal evidence standards. Integration with booking records ensures complete documentation.", features: [ "Encrypted video storage", "Tamper-evident chain of custody", "Automatic retention management", "Multi-camera support", "Incident tagging and retrieval", "Court-ready export formats" ], videoUrl: "https://www.youtube.com/embed/demo-video-3" }, products: [ { sku: "BEB-SW-001", name: "Book 'Em Bot Enterprise License", category: "Software", description: "Full booking software suite with AI assistant, unlimited users", price: "Contact Sales" }, { sku: "BEB-SW-002", name: "Holding Video Module", category: "Software", description: "Secure video monitoring and chain of custody management", price: "Contact Sales" }, { sku: "BEB-HW-101", name: "Biometric Capture Station", category: "Hardware", description: "Integrated fingerprint, photo, and iris scanning workstation", price: "Contact Sales" }, { sku: "BEB-HW-102", name: "Mugshot Camera System", category: "Hardware", description: "Professional-grade camera with automated positioning", price: "Contact Sales" }, { sku: "BEB-HW-201", name: "Video Storage Array", category: "Hardware", description: "RAID-configured encrypted storage for video evidence", price: "Contact Sales" }, { sku: "BEB-HW-202", name: "HD Surveillance Camera", category: "Hardware", description: "Holding cell monitoring camera with night vision", price: "Contact Sales" } ] }); const NavBar = () => ( ); const HomePage = () => (
Book Em Bot Logo

{content.home.title}

{content.home.subtitle}

{content.home.description}

NIST Compliant

Meets federal standards for biometric data collection and evidence handling

Chain of Custody

Automated tracking and documentation for all evidence and biometric data

AI-Assisted

Intelligent automation reduces errors and streamlines booking procedures

Product Demo

); const BookingSoftwarePage = () => (
Booking Software

{content.booking.title}

{content.booking.subtitle}

{content.booking.description}

Key Features

    {content.booking.features.map((feature, idx) => (
  • {feature}
  • ))}

Compliance Standards

  • NIST SP 800-53 Security Controls
  • FBI CJIS Security Policy Compliant
  • HIPAA Privacy Standards
  • State & Federal Evidence Standards

Software Demonstration

); const HoldingVideoPage = () => (
Holding Video System

{content.holding.title}

{content.holding.subtitle}

{content.holding.description}

System Capabilities

    {content.holding.features.map((feature, idx) => (
  • {feature}
  • ))}

Evidence Integrity

  • SHA-256 cryptographic hashing
  • Immutable audit logs
  • Automatic backup verification
  • Digital signature authentication

System Demonstration

); const ProductsPage = () => { const [editMode, setEditMode] = useState(false); return (

Products & Solutions

Complete hardware and software packages for your agency

{content.products.map((product, idx) => (
{product.sku}

{product.name}

{product.category}

{product.description}

{product.price}
))}
{editMode && (

Admin Mode: In production, connect to your CMS or database to manage products. For Cloudflare Workers deployment, use KV storage or D1 database.

)}
); }; const ContactPage = () => { const [formData, setFormData] = useState({ agency: '', name: '', email: '', phone: '', product: 'Booking Software', message: '' }); const handleSubmit = (e) => { e.preventDefault(); alert('Thank you for your interest! Our team will contact you shortly.'); console.log('Form submitted:', formData); }; return (

Contact Sales

Get a personalized quote for your agency

setFormData({...formData, agency: e.target.value})} className="w-full px-4 py-2 bg-slate-700 text-white rounded border border-slate-600 focus:border-cyan-500 focus:outline-none" />
setFormData({...formData, name: e.target.value})} className="w-full px-4 py-2 bg-slate-700 text-white rounded border border-slate-600 focus:border-cyan-500 focus:outline-none" />
setFormData({...formData, email: e.target.value})} className="w-full px-4 py-2 bg-slate-700 text-white rounded border border-slate-600 focus:border-cyan-500 focus:outline-none" />
setFormData({...formData, phone: e.target.value})} className="w-full px-4 py-2 bg-slate-700 text-white rounded border border-slate-600 focus:border-cyan-500 focus:outline-none" />
); }; return (
{currentPage === 'home' && } {currentPage === 'booking' && } {currentPage === 'holding' && } {currentPage === 'products' && } {currentPage === 'contact' && }
); }; export default BookEmBotWebsite;