const { useMemo, useState, useEffect } = React; const navLinks = [ { label: "Home", href: "#home" }, { label: "Core", href: "#core" }, { label: "Products", href: "#products" }, { label: "How it works", href: "#how-it-works" }, { label: "Pricing", href: "#pricing" }, { label: "Contact", href: "#contact" }, ]; const whyPoints = [ { title: "One controlled environment", text: "Valqeron replaces scattered tools with a single operating layer for AI execution.", }, { title: "Structured, not improvised", text: "Every system runs through clear oversight, auditability, and operational ownership.", }, { title: "Modular growth", text: "Add AI capabilities without rebuilding your stack or fragmenting teams.", }, { title: "Built for serious adoption", text: "Designed for organizations that need outcomes, control, and reliability.", }, ]; const corePillars = [ "Central governance and oversight", "Unified system logic and controls", "Stable foundation for every product", "Designed for compliance-aware deployment", ]; const coreConnections = [ "Products", "Documents", "Results", "Oversight", "Support", "Expansion", ]; const products = [ { name: "Document Intelligence", outcome: "Structured extraction", detail: "Turn complex documents into controlled, searchable business data.", }, { name: "Customer Support AI", outcome: "Reliable resolution", detail: "Reduce workload while maintaining oversight and tone consistency.", }, { name: "Sales Qualification AI", outcome: "Sharper pipelines", detail: "Qualify inbound leads with traceable decisions and clear signals.", }, { name: "Invoice Processing AI", outcome: "Operational speed", detail: "Automate invoice workflows with validation, routing, and controls.", }, { name: "HR Recruitment AI", outcome: "Focused hiring", detail: "Screen and summarize candidates with structured governance layers.", }, { name: "Business Intelligence", outcome: "Executive clarity", detail: "Surface insights with consistent data lineage and oversight.", }, ]; const steps = [ { step: "01", title: "Connect your environment", text: "Integrate key systems, data sources, and operational context.", }, { step: "02", title: "Bring in documents and policies", text: "Load the materials and guardrails that matter to your business.", }, { step: "03", title: "Activate controlled AI products", text: "Launch modular AI capabilities under Valqeron Core.", }, { step: "04", title: "Review clear results", text: "Monitor outputs with reporting, audit trails, and human oversight.", }, ]; const valuePoints = [ "Less fragmentation across teams and tooling", "More oversight and accountability for AI use", "Scalable AI adoption without operational drift", "Clearer internal ownership and governance", "Reduced operational chaos through structure", "Controlled growth across functions", ]; const pricingPackages = [ { tier: "Starter", description: "For small companies starting with AI implementation.", fee: "€4,500 setup + €1,250/month", note: "Workflows are priced separately.", ctaLabel: "Discuss Starter", ctaStyle: "secondary", }, { tier: "Business", description: "For companies with €1M+ revenue that want operational automation and measurable ROI.", fee: "€8,500 setup + €2,500/month", note: "Minimum 3 paid workflows.", recommended: true, ctaLabel: "Book a demo", ctaStyle: "primary", }, { tier: "Enterprise", description: "For larger organizations with scale, compliance, governance, and integration needs.", fee: "From €15,000 setup + from €5,000/month", note: "Minimum 5 paid workflows.", ctaLabel: "Request proposal", ctaStyle: "secondary", }, ]; const workflowPricing = [ { name: "Document Knowledge AI", price: "€950–€1,750/month", benefit: "Turn document libraries into searchable knowledge.", }, { name: "Full Document Audit AI", price: "€1,500–€3,000/month", benefit: "Audit complex documents with traceable output.", }, { name: "Customer Support AI", price: "€2,000–€5,000/month", benefit: "Deflect tickets with controlled responses.", }, { name: "Sales Qualification AI", price: "€1,750–€4,500/month", benefit: "Prioritize inbound leads with clear scoring.", }, { name: "Quote & Contract AI", price: "€2,000–€5,000/month", benefit: "Speed quotes with governed contract logic.", }, { name: "Invoice Processing AI", price: "€1,500–€4,000/month", benefit: "Reduce AP workload with validation.", }, { name: "Marketing Automation AI", price: "€1,500–€4,000/month", benefit: "Launch campaigns with compliance guardrails.", }, { name: "Business Intelligence AI", price: "€2,500–€6,000/month", benefit: "Surface executive insights with lineage.", }, { name: "HR Recruitment AI", price: "€1,500–€4,000/month", benefit: "Screen candidates with structured summaries.", }, { name: "Meeting Assistant AI", price: "€750–€2,000/month", benefit: "Capture decisions and next steps.", }, { name: "Compliance Monitoring AI", price: "€3,000–€7,500/month", benefit: "Continuous oversight and policy monitoring.", }, { name: "Governance & Risk AI", price: "€3,500–€8,500/month", benefit: "Operational risk signals with accountability.", }, { name: "ISO / EU AI Act Layer", price: "€5,000–€12,500/month", benefit: "Compliance layer for regulated deployment.", }, ]; const differentiation = [ { title: "Controlled systems", text: "Valqeron delivers unified systems instead of disconnected AI tools.", }, { title: "Modular evolution", text: "Expand without rewriting your stack or losing governance context.", }, { title: "Operational clarity", text: "Structured environment for real business operations, not experiments.", }, ]; const coreArchitecture = [ { title: "Governance spine", text: "Policy controls, approvals, and oversight live in one central layer.", }, { title: "Product orchestration", text: "Every AI module inherits shared security, data access, and controls.", }, { title: "Operational telemetry", text: "Structured monitoring, audit trails, and performance visibility.", }, ]; const coreOutcomes = [ { title: "Safer rollout", text: "Controlled deployment reduces operational risk and decision opacity.", }, { title: "Cleaner operations", text: "Clear ownership and approvals keep teams aligned and accountable.", }, { title: "Scalable expansion", text: "Add products without rebuilding the governance layer.", }, ]; const StatCard = ({ label, value }) => (
{value}
{label}
); const FeatureCard = ({ title, text }) => (

{title}

{text}

); const ContactForm = () => { const [form, setForm] = useState({ name: "", email: "", company: "", message: "", }); const [status, setStatus] = useState({ state: "idle", message: "" }); const handleChange = (event) => { const { name, value } = event.target; setForm((prev) => ({ ...prev, [name]: value })); }; const handleSubmit = async (event) => { event.preventDefault(); setStatus({ state: "loading", message: "" }); try { const response = await fetch("/api/contact", { method: "POST", headers: { "Content-Type": "application/json" }, body: JSON.stringify(form), }); if (!response.ok) { throw new Error("Failed to submit"); } setStatus({ state: "success", message: "Thank you. We will respond shortly.", }); setForm({ name: "", email: "", company: "", message: "" }); } catch (error) { setStatus({ state: "error", message: "Unable to send right now. Please try again shortly.", }); } }; return (
{status.message && ( {status.message} )}
); }; const Navbar = () => (
Valqeron logo
); const TechBand = () => (
); const ImageAtmosphere = ({ className, src }) => (