{"version":3,"file":"main.SMnQF8ow.js","sources":["../../../node_modules/react/cjs/react-jsx-runtime.production.min.js","../../../node_modules/react/jsx-runtime.js","../../../node_modules/react-dom/client.js","../../../src/components/Navbar.tsx","../../../src/components/Hero.tsx","../../../src/components/Features.tsx","../../../src/components/Testimonials.tsx","../../../node_modules/prop-types/factoryWithThrowingShims.js","../../../node_modules/prop-types/index.js","../../../node_modules/prop-types/lib/ReactPropTypesSecret.js","../../../node_modules/@stripe/react-stripe-js/dist/react-stripe.esm.js","../../../node_modules/@formspree/core/dist/index.js","../../../node_modules/@stripe/stripe-js/dist/pure.js","../../../node_modules/@formspree/react/dist/index.mjs","../../../src/components/CTA.tsx","../../../src/components/Footer.tsx","../../../src/pages/About.tsx","../../../src/pages/Leadership.tsx","../../../src/pages/Contact.tsx","../../../src/pages/Careers.tsx","../../../src/pages/CustomerPortal.tsx","../../../src/pages/RemoteSupport.tsx","../../../src/pages/legal/PrivacyPolicy.tsx","../../../src/pages/legal/TermsConditions.tsx","../../../src/pages/legal/CookiePolicy.tsx","../../../src/pages/services/ServicePage.tsx","../../../src/pages/services/ManagedIT.tsx","../../../src/pages/services/CoManagedIT.tsx","../../../src/pages/services/Cybersecurity.tsx","../../../src/pages/services/ProfessionalServices.tsx","../../../src/pages/services/ConsultingServices.tsx","../../../src/App.tsx","../../../src/utils/security.ts","../../../src/main.tsx"],"sourcesContent":["/**\n * @license React\n * react-jsx-runtime.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n'use strict';var f=require(\"react\"),k=Symbol.for(\"react.element\"),l=Symbol.for(\"react.fragment\"),m=Object.prototype.hasOwnProperty,n=f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,p={key:!0,ref:!0,__self:!0,__source:!0};\nfunction q(c,a,g){var b,d={},e=null,h=null;void 0!==g&&(e=\"\"+g);void 0!==a.key&&(e=\"\"+a.key);void 0!==a.ref&&(h=a.ref);for(b in a)m.call(a,b)&&!p.hasOwnProperty(b)&&(d[b]=a[b]);if(c&&c.defaultProps)for(b in a=c.defaultProps,a)void 0===d[b]&&(d[b]=a[b]);return{$$typeof:k,type:c,key:e,ref:h,props:d,_owner:n.current}}exports.Fragment=l;exports.jsx=q;exports.jsxs=q;\n","'use strict';\n\nif (process.env.NODE_ENV === 'production') {\n module.exports = require('./cjs/react-jsx-runtime.production.min.js');\n} else {\n module.exports = require('./cjs/react-jsx-runtime.development.js');\n}\n","'use strict';\n\nvar m = require('react-dom');\nif (process.env.NODE_ENV === 'production') {\n exports.createRoot = m.createRoot;\n exports.hydrateRoot = m.hydrateRoot;\n} else {\n var i = m.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;\n exports.createRoot = function(c, o) {\n i.usingClientEntryPoint = true;\n try {\n return m.createRoot(c, o);\n } finally {\n i.usingClientEntryPoint = false;\n }\n };\n exports.hydrateRoot = function(c, h, o) {\n i.usingClientEntryPoint = true;\n try {\n return m.hydrateRoot(c, h, o);\n } finally {\n i.usingClientEntryPoint = false;\n }\n };\n}\n","import React, { useState, useEffect } from 'react';\nimport { Link, useLocation } from 'react-router-dom';\nimport { Menu, X, ChevronDown, ExternalLink } from 'lucide-react';\n\nexport default function Navbar() {\n const [isOpen, setIsOpen] = useState(false);\n const [activeDropdown, setActiveDropdown] = useState(null);\n const location = useLocation();\n\n // Close mobile menu when route changes\n useEffect(() => {\n setIsOpen(false);\n setActiveDropdown(null);\n }, [location]);\n\n const navigation = {\n main: [\n {\n name: 'About Us',\n href: '/about',\n dropdown: [\n { name: 'Company Overview', href: '/about' },\n { name: 'Leadership Team', href: '/leadership' }\n ]\n },\n {\n name: 'Services',\n href: '/services',\n dropdown: [\n { name: 'Managed IT', href: '/services/managed-it' },\n { name: 'Co-Managed IT', href: '/services/co-managed-it' },\n { name: 'Cybersecurity', href: '/services/cybersecurity' },\n { name: 'Professional Services', href: '/services/professional-services' },\n { name: 'Consulting Services', href: '/services/consulting' }\n ]\n },\n { name: 'Contact', href: '/contact' },\n { name: 'Careers', href: '/careers' }\n ],\n customer: {\n name: 'Customer Portal',\n links: [\n { name: 'Monitoring Portal', href: 'https://ucx.logicmonitor.com', external: true },\n { name: 'Remote Support', href: '/remote-support' }\n ]\n }\n };\n\n const isActive = (path: string) => location.pathname === path;\n const isActiveDropdown = (items: any[]) => items.some(item => location.pathname === item.href);\n\n return (\n \n );\n}","import React from 'react';\nimport { ArrowRight } from 'lucide-react';\n\nexport default function Hero() {\n const scrollToConsultation = () => {\n const consultationSection = document.getElementById('consultation');\n consultationSection?.scrollIntoView({ behavior: 'smooth' });\n };\n\n return (\n
\n
\n
\n
\n

\n Secure Your Business with Enterprise-Grade IT Solutions\n

\n

\n Transform your business with cutting-edge managed IT services. Get 24/7 support, cybersecurity, and cloud solutions tailored to your needs.\n

\n
\n \n \n Contact Us\n
\n \n
\n
\n
\n
\n \"IT\n
\n
\n
\n
\n );\n}","import React from 'react';\nimport { \n Shield, \n Server, \n Clock, \n Users, \n CheckCircle,\n Key,\n Mail,\n Search,\n Eye,\n Bell,\n BarChart,\n UserPlus,\n ShoppingCart,\n Cloud,\n Zap,\n ArrowRight,\n Lock,\n ShieldCheck,\n Laptop,\n UserCog\n} from 'lucide-react';\n\nconst StatCard = ({ title, value }: { title: string; value: string }) => (\n
\n
{value}
\n
{title}
\n
\n);\n\nconst SolutionList = ({ title, items }: { title: string, items: { icon: any, title: string }[] }) => (\n
\n
\n
\n
\n \n

\n {title}\n

\n \n
    \n {items.map((item, index) => (\n
  • \n
    \n
    \n \n
    \n {item.title}\n
  • \n ))}\n
\n \n
\n
\n
\n);\n\nexport default function Features() {\n const stats = [\n { value: \"99.9%\", title: \"Uptime\" },\n { value: \"15min\", title: \"Response Time\" },\n { value: \"24/7\", title: \"Support\" },\n { value: \"500+\", title: \"Clients\" }\n ];\n\n const networkProtection = [\n { icon: Lock, title: \"Multi-factor Authentication (DUO)\" },\n { icon: ShieldCheck, title: \"Next-Generation Anti-virus Software\" },\n { icon: Mail, title: \"Email Phishing Campaigns and Education\" },\n { icon: Search, title: \"Continual Vulnerability Scans\" },\n { icon: Eye, title: \"Dark Web Monitoring\" },\n { icon: Bell, title: \"Managed Firewall and 24/7 Monitoring\" },\n { icon: Shield, title: \"Managed Detection and Response (MDR)\" }\n ];\n\n const leadershipSupport = [\n { icon: UserCog, title: \"Assigned Virtual Chief Technology Officer (vCTO)\" },\n { icon: Users, title: \"Assigned Technical Alignment Manager (TAM)\" },\n { icon: BarChart, title: \"Quarterly Business Reviews (QBR)\" },\n { icon: UserPlus, title: \"Onboarding/Offboarding Support\" },\n { icon: ShoppingCart, title: \"Hardware/Software Purchasing Support\" }\n ];\n\n return (\n
\n
\n {/* Stats Grid */}\n
\n {stats.map((stat, index) => (\n \n ))}\n
\n\n {/* Solutions Section */}\n
\n
\n
\n

\n We're Here To Help\n

\n
\n
\n

\n Comprehensive IT solutions designed to protect and optimize your business\n

\n
\n \n
\n \n \n
\n
\n
\n
\n );\n}","import React from 'react';\nimport { Quote } from 'lucide-react';\n\nexport default function Testimonials() {\n const testimonials = [\n {\n quote: \"Without a doubt, we would not be in the position we are now without their expertise and guidance. Our Technology Services department has gone from little to no respect and faith from our stakeholders, to the most counted on to complete the task with efficiency and timeliness.\",\n position: \"Executive Director of Technology and Information – Public School District in Texas\"\n },\n {\n quote: \"With their innovative solution, our district was able to add triple the number of Virtual Machines at the same cost as our first deployment. Their turnkey operation did everything we needed, their team was very professional, and they were on-time with all their work.\",\n position: \"Chief Technology Officer - Public School District in Texas\"\n },\n {\n quote: \"The UCX team is professional, knowledgeable, and accommodating. In less than a year's time, the City now operates on a different network platform, has fewer servers, has upgraded its website management controls and has implemented a new IP phone system.\",\n position: \"City Manager – City Government\"\n }\n ];\n\n return (\n
\n
\n

\n What Our Clients Say\n

\n

\n Join hundreds of satisfied clients who trust us with their IT infrastructure\n

\n \n
\n {testimonials.map((testimonial, index) => (\n
\n
\n
\n \n

{testimonial.quote}

\n
\n

{testimonial.position}

\n
\n
\n
\n ))}\n
\n
\n
\n );\n}","/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nvar ReactPropTypesSecret = require('./lib/ReactPropTypesSecret');\n\nfunction emptyFunction() {}\nfunction emptyFunctionWithReset() {}\nemptyFunctionWithReset.resetWarningCache = emptyFunction;\n\nmodule.exports = function() {\n function shim(props, propName, componentName, location, propFullName, secret) {\n if (secret === ReactPropTypesSecret) {\n // It is still safe when called from React.\n return;\n }\n var err = new Error(\n 'Calling PropTypes validators directly is not supported by the `prop-types` package. ' +\n 'Use PropTypes.checkPropTypes() to call them. ' +\n 'Read more at http://fb.me/use-check-prop-types'\n );\n err.name = 'Invariant Violation';\n throw err;\n };\n shim.isRequired = shim;\n function getShim() {\n return shim;\n };\n // Important!\n // Keep this list in sync with production version in `./factoryWithTypeCheckers.js`.\n var ReactPropTypes = {\n array: shim,\n bigint: shim,\n bool: shim,\n func: shim,\n number: shim,\n object: shim,\n string: shim,\n symbol: shim,\n\n any: shim,\n arrayOf: getShim,\n element: shim,\n elementType: shim,\n instanceOf: getShim,\n node: shim,\n objectOf: getShim,\n oneOf: getShim,\n oneOfType: getShim,\n shape: getShim,\n exact: getShim,\n\n checkPropTypes: emptyFunctionWithReset,\n resetWarningCache: emptyFunction\n };\n\n ReactPropTypes.PropTypes = ReactPropTypes;\n\n return ReactPropTypes;\n};\n","/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\nif (process.env.NODE_ENV !== 'production') {\n var ReactIs = require('react-is');\n\n // By explicitly using `prop-types` you are opting into new development behavior.\n // http://fb.me/prop-types-in-prod\n var throwOnDirectAccess = true;\n module.exports = require('./factoryWithTypeCheckers')(ReactIs.isElement, throwOnDirectAccess);\n} else {\n // By explicitly using `prop-types` you are opting into new production behavior.\n // http://fb.me/prop-types-in-prod\n module.exports = require('./factoryWithThrowingShims')();\n}\n","/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n'use strict';\n\nvar ReactPropTypesSecret = 'SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED';\n\nmodule.exports = ReactPropTypesSecret;\n","import React from 'react';\nimport PropTypes from 'prop-types';\n\nfunction ownKeys(object, enumerableOnly) {\n var keys = Object.keys(object);\n\n if (Object.getOwnPropertySymbols) {\n var symbols = Object.getOwnPropertySymbols(object);\n\n if (enumerableOnly) {\n symbols = symbols.filter(function (sym) {\n return Object.getOwnPropertyDescriptor(object, sym).enumerable;\n });\n }\n\n keys.push.apply(keys, symbols);\n }\n\n return keys;\n}\n\nfunction _objectSpread2(target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i] != null ? arguments[i] : {};\n\n if (i % 2) {\n ownKeys(Object(source), true).forEach(function (key) {\n _defineProperty(target, key, source[key]);\n });\n } else if (Object.getOwnPropertyDescriptors) {\n Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));\n } else {\n ownKeys(Object(source)).forEach(function (key) {\n Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));\n });\n }\n }\n\n return target;\n}\n\nfunction _typeof(obj) {\n \"@babel/helpers - typeof\";\n\n if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") {\n _typeof = function (obj) {\n return typeof obj;\n };\n } else {\n _typeof = function (obj) {\n return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj;\n };\n }\n\n return _typeof(obj);\n}\n\nfunction _defineProperty(obj, key, value) {\n if (key in obj) {\n Object.defineProperty(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n } else {\n obj[key] = value;\n }\n\n return obj;\n}\n\nfunction _slicedToArray(arr, i) {\n return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest();\n}\n\nfunction _arrayWithHoles(arr) {\n if (Array.isArray(arr)) return arr;\n}\n\nfunction _iterableToArrayLimit(arr, i) {\n var _i = arr && (typeof Symbol !== \"undefined\" && arr[Symbol.iterator] || arr[\"@@iterator\"]);\n\n if (_i == null) return;\n var _arr = [];\n var _n = true;\n var _d = false;\n\n var _s, _e;\n\n try {\n for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) {\n _arr.push(_s.value);\n\n if (i && _arr.length === i) break;\n }\n } catch (err) {\n _d = true;\n _e = err;\n } finally {\n try {\n if (!_n && _i[\"return\"] != null) _i[\"return\"]();\n } finally {\n if (_d) throw _e;\n }\n }\n\n return _arr;\n}\n\nfunction _unsupportedIterableToArray(o, minLen) {\n if (!o) return;\n if (typeof o === \"string\") return _arrayLikeToArray(o, minLen);\n var n = Object.prototype.toString.call(o).slice(8, -1);\n if (n === \"Object\" && o.constructor) n = o.constructor.name;\n if (n === \"Map\" || n === \"Set\") return Array.from(o);\n if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);\n}\n\nfunction _arrayLikeToArray(arr, len) {\n if (len == null || len > arr.length) len = arr.length;\n\n for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];\n\n return arr2;\n}\n\nfunction _nonIterableRest() {\n throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\");\n}\n\nvar usePrevious = function usePrevious(value) {\n var ref = React.useRef(value);\n React.useEffect(function () {\n ref.current = value;\n }, [value]);\n return ref.current;\n};\n\nvar isUnknownObject = function isUnknownObject(raw) {\n return raw !== null && _typeof(raw) === 'object';\n};\nvar isPromise = function isPromise(raw) {\n return isUnknownObject(raw) && typeof raw.then === 'function';\n}; // We are using types to enforce the `stripe` prop in this lib,\n// but in an untyped integration `stripe` could be anything, so we need\n// to do some sanity validation to prevent type errors.\n\nvar isStripe = function isStripe(raw) {\n return isUnknownObject(raw) && typeof raw.elements === 'function' && typeof raw.createToken === 'function' && typeof raw.createPaymentMethod === 'function' && typeof raw.confirmCardPayment === 'function';\n};\n\nvar PLAIN_OBJECT_STR = '[object Object]';\nvar isEqual = function isEqual(left, right) {\n if (!isUnknownObject(left) || !isUnknownObject(right)) {\n return left === right;\n }\n\n var leftArray = Array.isArray(left);\n var rightArray = Array.isArray(right);\n if (leftArray !== rightArray) return false;\n var leftPlainObject = Object.prototype.toString.call(left) === PLAIN_OBJECT_STR;\n var rightPlainObject = Object.prototype.toString.call(right) === PLAIN_OBJECT_STR;\n if (leftPlainObject !== rightPlainObject) return false; // not sure what sort of special object this is (regexp is one option), so\n // fallback to reference check.\n\n if (!leftPlainObject && !leftArray) return left === right;\n var leftKeys = Object.keys(left);\n var rightKeys = Object.keys(right);\n if (leftKeys.length !== rightKeys.length) return false;\n var keySet = {};\n\n for (var i = 0; i < leftKeys.length; i += 1) {\n keySet[leftKeys[i]] = true;\n }\n\n for (var _i = 0; _i < rightKeys.length; _i += 1) {\n keySet[rightKeys[_i]] = true;\n }\n\n var allKeys = Object.keys(keySet);\n\n if (allKeys.length !== leftKeys.length) {\n return false;\n }\n\n var l = left;\n var r = right;\n\n var pred = function pred(key) {\n return isEqual(l[key], r[key]);\n };\n\n return allKeys.every(pred);\n};\n\nvar extractAllowedOptionsUpdates = function extractAllowedOptionsUpdates(options, prevOptions, immutableKeys) {\n if (!isUnknownObject(options)) {\n return null;\n }\n\n return Object.keys(options).reduce(function (newOptions, key) {\n var isUpdated = !isUnknownObject(prevOptions) || !isEqual(options[key], prevOptions[key]);\n\n if (immutableKeys.includes(key)) {\n if (isUpdated) {\n console.warn(\"Unsupported prop change: options.\".concat(key, \" is not a mutable property.\"));\n }\n\n return newOptions;\n }\n\n if (!isUpdated) {\n return newOptions;\n }\n\n return _objectSpread2(_objectSpread2({}, newOptions || {}), {}, _defineProperty({}, key, options[key]));\n }, null);\n};\n\nvar INVALID_STRIPE_ERROR = 'Invalid prop `stripe` supplied to `Elements`. We recommend using the `loadStripe` utility from `@stripe/stripe-js`. See https://stripe.com/docs/stripe-js/react#elements-props-stripe for details.'; // We are using types to enforce the `stripe` prop in this lib, but in a real\n// integration `stripe` could be anything, so we need to do some sanity\n// validation to prevent type errors.\n\nvar validateStripe = function validateStripe(maybeStripe) {\n if (maybeStripe === null || isStripe(maybeStripe)) {\n return maybeStripe;\n }\n\n throw new Error(INVALID_STRIPE_ERROR);\n};\n\nvar parseStripeProp = function parseStripeProp(raw) {\n if (isPromise(raw)) {\n return {\n tag: 'async',\n stripePromise: Promise.resolve(raw).then(validateStripe)\n };\n }\n\n var stripe = validateStripe(raw);\n\n if (stripe === null) {\n return {\n tag: 'empty'\n };\n }\n\n return {\n tag: 'sync',\n stripe: stripe\n };\n};\n\nvar ElementsContext = /*#__PURE__*/React.createContext(null);\nElementsContext.displayName = 'ElementsContext';\nvar parseElementsContext = function parseElementsContext(ctx, useCase) {\n if (!ctx) {\n throw new Error(\"Could not find Elements context; You need to wrap the part of your app that \".concat(useCase, \" in an provider.\"));\n }\n\n return ctx;\n};\nvar CartElementContext = /*#__PURE__*/React.createContext(null);\nCartElementContext.displayName = 'CartElementContext';\nvar parseCartElementContext = function parseCartElementContext(ctx, useCase) {\n if (!ctx) {\n throw new Error(\"Could not find Elements context; You need to wrap the part of your app that \".concat(useCase, \" in an provider.\"));\n }\n\n return ctx;\n};\n/**\n * The `Elements` provider allows you to use [Element components](https://stripe.com/docs/stripe-js/react#element-components) and access the [Stripe object](https://stripe.com/docs/js/initializing) in any nested component.\n * Render an `Elements` provider at the root of your React app so that it is available everywhere you need it.\n *\n * To use the `Elements` provider, call `loadStripe` from `@stripe/stripe-js` with your publishable key.\n * The `loadStripe` function will asynchronously load the Stripe.js script and initialize a `Stripe` object.\n * Pass the returned `Promise` to `Elements`.\n *\n * @docs https://stripe.com/docs/stripe-js/react#elements-provider\n */\n\nvar Elements = function Elements(_ref) {\n var rawStripeProp = _ref.stripe,\n options = _ref.options,\n children = _ref.children;\n var parsed = React.useMemo(function () {\n return parseStripeProp(rawStripeProp);\n }, [rawStripeProp]);\n\n var _React$useState = React.useState(null),\n _React$useState2 = _slicedToArray(_React$useState, 2),\n cart = _React$useState2[0],\n setCart = _React$useState2[1];\n\n var _React$useState3 = React.useState(null),\n _React$useState4 = _slicedToArray(_React$useState3, 2),\n cartState = _React$useState4[0],\n setCartState = _React$useState4[1]; // For a sync stripe instance, initialize into context\n\n\n var _React$useState5 = React.useState(function () {\n return {\n stripe: parsed.tag === 'sync' ? parsed.stripe : null,\n elements: parsed.tag === 'sync' ? parsed.stripe.elements(options) : null\n };\n }),\n _React$useState6 = _slicedToArray(_React$useState5, 2),\n ctx = _React$useState6[0],\n setContext = _React$useState6[1];\n\n React.useEffect(function () {\n var isMounted = true;\n\n var safeSetContext = function safeSetContext(stripe) {\n setContext(function (ctx) {\n // no-op if we already have a stripe instance (https://github.com/stripe/react-stripe-js/issues/296)\n if (ctx.stripe) return ctx;\n return {\n stripe: stripe,\n elements: stripe.elements(options)\n };\n });\n }; // For an async stripePromise, store it in context once resolved\n\n\n if (parsed.tag === 'async' && !ctx.stripe) {\n parsed.stripePromise.then(function (stripe) {\n if (stripe && isMounted) {\n // Only update Elements context if the component is still mounted\n // and stripe is not null. We allow stripe to be null to make\n // handling SSR easier.\n safeSetContext(stripe);\n }\n });\n } else if (parsed.tag === 'sync' && !ctx.stripe) {\n // Or, handle a sync stripe instance going from null -> populated\n safeSetContext(parsed.stripe);\n }\n\n return function () {\n isMounted = false;\n };\n }, [parsed, ctx, options]); // Warn on changes to stripe prop\n\n var prevStripe = usePrevious(rawStripeProp);\n React.useEffect(function () {\n if (prevStripe !== null && prevStripe !== rawStripeProp) {\n console.warn('Unsupported prop change on Elements: You cannot change the `stripe` prop after setting it.');\n }\n }, [prevStripe, rawStripeProp]); // Apply updates to elements when options prop has relevant changes\n\n var prevOptions = usePrevious(options);\n React.useEffect(function () {\n if (!ctx.elements) {\n return;\n }\n\n var updates = extractAllowedOptionsUpdates(options, prevOptions, ['clientSecret', 'fonts']);\n\n if (updates) {\n ctx.elements.update(updates);\n }\n }, [options, prevOptions, ctx.elements]); // Attach react-stripe-js version to stripe.js instance\n\n React.useEffect(function () {\n var anyStripe = ctx.stripe;\n\n if (!anyStripe || !anyStripe._registerWrapper || !anyStripe.registerAppInfo) {\n return;\n }\n\n anyStripe._registerWrapper({\n name: 'react-stripe-js',\n version: \"1.16.5\"\n });\n\n anyStripe.registerAppInfo({\n name: 'react-stripe-js',\n version: \"1.16.5\",\n url: 'https://stripe.com/docs/stripe-js/react'\n });\n }, [ctx.stripe]);\n return /*#__PURE__*/React.createElement(ElementsContext.Provider, {\n value: ctx\n }, /*#__PURE__*/React.createElement(CartElementContext.Provider, {\n value: {\n cart: cart,\n setCart: setCart,\n cartState: cartState,\n setCartState: setCartState\n }\n }, children));\n};\nElements.propTypes = {\n stripe: PropTypes.any,\n options: PropTypes.object\n};\nvar useElementsContextWithUseCase = function useElementsContextWithUseCase(useCaseMessage) {\n var ctx = React.useContext(ElementsContext);\n return parseElementsContext(ctx, useCaseMessage);\n};\nvar useCartElementContextWithUseCase = function useCartElementContextWithUseCase(useCaseMessage) {\n var ctx = React.useContext(CartElementContext);\n return parseCartElementContext(ctx, useCaseMessage);\n};\n/**\n * @docs https://stripe.com/docs/stripe-js/react#useelements-hook\n */\n\nvar useElements = function useElements() {\n var _useElementsContextWi = useElementsContextWithUseCase('calls useElements()'),\n elements = _useElementsContextWi.elements;\n\n return elements;\n};\n/**\n * @docs https://stripe.com/docs/stripe-js/react#usestripe-hook\n */\n\nvar useStripe = function useStripe() {\n var _useElementsContextWi2 = useElementsContextWithUseCase('calls useStripe()'),\n stripe = _useElementsContextWi2.stripe;\n\n return stripe;\n};\n/**\n * @docs https://stripe.com/docs/payments/checkout/cart-element\n */\n\nvar useCartElement = function useCartElement() {\n var _useCartElementContex = useCartElementContextWithUseCase('calls useCartElement()'),\n cart = _useCartElementContex.cart;\n\n return cart;\n};\n/**\n * @docs https://stripe.com/docs/payments/checkout/cart-element\n */\n\nvar useCartElementState = function useCartElementState() {\n var _useCartElementContex2 = useCartElementContextWithUseCase('calls useCartElementState()'),\n cartState = _useCartElementContex2.cartState;\n\n return cartState;\n};\n/**\n * @docs https://stripe.com/docs/stripe-js/react#elements-consumer\n */\n\nvar ElementsConsumer = function ElementsConsumer(_ref2) {\n var children = _ref2.children;\n var ctx = useElementsContextWithUseCase('mounts '); // Assert to satisfy the busted React.FC return type (it should be ReactNode)\n\n return children(ctx);\n};\nElementsConsumer.propTypes = {\n children: PropTypes.func.isRequired\n};\n\nvar useAttachEvent = function useAttachEvent(element, event, cb) {\n var cbDefined = !!cb;\n var cbRef = React.useRef(cb); // In many integrations the callback prop changes on each render.\n // Using a ref saves us from calling element.on/.off every render.\n\n React.useEffect(function () {\n cbRef.current = cb;\n }, [cb]);\n React.useEffect(function () {\n if (!cbDefined || !element) {\n return function () {};\n }\n\n var decoratedCb = function decoratedCb() {\n if (cbRef.current) {\n cbRef.current.apply(cbRef, arguments);\n }\n };\n\n element.on(event, decoratedCb);\n return function () {\n element.off(event, decoratedCb);\n };\n }, [cbDefined, event, element, cbRef]);\n};\n\nvar capitalized = function capitalized(str) {\n return str.charAt(0).toUpperCase() + str.slice(1);\n};\n\nvar createElementComponent = function createElementComponent(type, isServer) {\n var displayName = \"\".concat(capitalized(type), \"Element\");\n\n var ClientElement = function ClientElement(_ref) {\n var id = _ref.id,\n className = _ref.className,\n _ref$options = _ref.options,\n options = _ref$options === void 0 ? {} : _ref$options,\n onBlur = _ref.onBlur,\n onFocus = _ref.onFocus,\n onReady = _ref.onReady,\n onChange = _ref.onChange,\n onEscape = _ref.onEscape,\n onClick = _ref.onClick,\n onLoadError = _ref.onLoadError,\n onLoaderStart = _ref.onLoaderStart,\n onNetworksChange = _ref.onNetworksChange,\n onCheckout = _ref.onCheckout,\n onLineItemClick = _ref.onLineItemClick,\n onConfirm = _ref.onConfirm,\n onCancel = _ref.onCancel,\n onShippingAddressChange = _ref.onShippingAddressChange,\n onShippingRateChange = _ref.onShippingRateChange;\n\n var _useElementsContextWi = useElementsContextWithUseCase(\"mounts <\".concat(displayName, \">\")),\n elements = _useElementsContextWi.elements;\n\n var _React$useState = React.useState(null),\n _React$useState2 = _slicedToArray(_React$useState, 2),\n element = _React$useState2[0],\n setElement = _React$useState2[1];\n\n var elementRef = React.useRef(null);\n var domNode = React.useRef(null);\n\n var _useCartElementContex = useCartElementContextWithUseCase(\"mounts <\".concat(displayName, \">\")),\n setCart = _useCartElementContex.setCart,\n setCartState = _useCartElementContex.setCartState; // For every event where the merchant provides a callback, call element.on\n // with that callback. If the merchant ever changes the callback, removes\n // the old callback with element.off and then call element.on with the new one.\n\n\n useAttachEvent(element, 'blur', onBlur);\n useAttachEvent(element, 'focus', onFocus);\n useAttachEvent(element, 'escape', onEscape);\n useAttachEvent(element, 'click', onClick);\n useAttachEvent(element, 'loaderror', onLoadError);\n useAttachEvent(element, 'loaderstart', onLoaderStart);\n useAttachEvent(element, 'networkschange', onNetworksChange);\n useAttachEvent(element, 'lineitemclick', onLineItemClick);\n useAttachEvent(element, 'confirm', onConfirm);\n useAttachEvent(element, 'cancel', onCancel);\n useAttachEvent(element, 'shippingaddresschange', onShippingAddressChange);\n useAttachEvent(element, 'shippingratechange', onShippingRateChange);\n var readyCallback;\n\n if (type === 'cart') {\n readyCallback = function readyCallback(event) {\n setCartState(event);\n onReady && onReady(event);\n };\n } else if (onReady) {\n if (type === 'payButton') {\n // Passes through the event, which includes visible PM types\n readyCallback = onReady;\n } else {\n // For other Elements, pass through the Element itself.\n readyCallback = function readyCallback() {\n onReady(element);\n };\n }\n }\n\n useAttachEvent(element, 'ready', readyCallback);\n var changeCallback = type === 'cart' ? function (event) {\n setCartState(event);\n onChange && onChange(event);\n } : onChange;\n useAttachEvent(element, 'change', changeCallback);\n var checkoutCallback = type === 'cart' ? function (event) {\n setCartState(event);\n onCheckout && onCheckout(event);\n } : onCheckout;\n useAttachEvent(element, 'checkout', checkoutCallback);\n React.useLayoutEffect(function () {\n if (elementRef.current === null && elements && domNode.current !== null) {\n var newElement = elements.create(type, options);\n\n if (type === 'cart' && setCart) {\n // we know that elements.create return value must be of type StripeCartElement if type is 'cart',\n // we need to cast because typescript is not able to infer which overloaded method is used based off param type\n setCart(newElement);\n } // Store element in a ref to ensure it's _immediately_ available in cleanup hooks in StrictMode\n\n\n elementRef.current = newElement; // Store element in state to facilitate event listener attachment\n\n setElement(newElement);\n newElement.mount(domNode.current);\n }\n }, [elements, options, setCart]);\n var prevOptions = usePrevious(options);\n React.useEffect(function () {\n if (!elementRef.current) {\n return;\n }\n\n var updates = extractAllowedOptionsUpdates(options, prevOptions, ['paymentRequest']);\n\n if (updates) {\n elementRef.current.update(updates);\n }\n }, [options, prevOptions]);\n React.useLayoutEffect(function () {\n return function () {\n if (elementRef.current) {\n elementRef.current.destroy();\n elementRef.current = null;\n }\n };\n }, []);\n return /*#__PURE__*/React.createElement(\"div\", {\n id: id,\n className: className,\n ref: domNode\n });\n }; // Only render the Element wrapper in a server environment.\n\n\n var ServerElement = function ServerElement(props) {\n // Validate that we are in the right context by calling useElementsContextWithUseCase.\n useElementsContextWithUseCase(\"mounts <\".concat(displayName, \">\"));\n useCartElementContextWithUseCase(\"mounts <\".concat(displayName, \">\"));\n var id = props.id,\n className = props.className;\n return /*#__PURE__*/React.createElement(\"div\", {\n id: id,\n className: className\n });\n };\n\n var Element = isServer ? ServerElement : ClientElement;\n Element.propTypes = {\n id: PropTypes.string,\n className: PropTypes.string,\n onChange: PropTypes.func,\n onBlur: PropTypes.func,\n onFocus: PropTypes.func,\n onReady: PropTypes.func,\n onEscape: PropTypes.func,\n onClick: PropTypes.func,\n onLoadError: PropTypes.func,\n onLoaderStart: PropTypes.func,\n onNetworksChange: PropTypes.func,\n onCheckout: PropTypes.func,\n onLineItemClick: PropTypes.func,\n onConfirm: PropTypes.func,\n onCancel: PropTypes.func,\n onShippingAddressChange: PropTypes.func,\n onShippingRateChange: PropTypes.func,\n options: PropTypes.object\n };\n Element.displayName = displayName;\n Element.__elementType = type;\n return Element;\n};\n\nvar isServer = typeof window === 'undefined';\n/**\n * Requires beta access:\n * Contact [Stripe support](https://support.stripe.com/) for more information.\n *\n * @docs https://stripe.com/docs/stripe-js/react#element-components\n */\n\nvar AuBankAccountElement = createElementComponent('auBankAccount', isServer);\n/**\n * @docs https://stripe.com/docs/stripe-js/react#element-components\n */\n\nvar CardElement = createElementComponent('card', isServer);\n/**\n * @docs https://stripe.com/docs/stripe-js/react#element-components\n */\n\nvar CardNumberElement = createElementComponent('cardNumber', isServer);\n/**\n * @docs https://stripe.com/docs/stripe-js/react#element-components\n */\n\nvar CardExpiryElement = createElementComponent('cardExpiry', isServer);\n/**\n * @docs https://stripe.com/docs/stripe-js/react#element-components\n */\n\nvar CardCvcElement = createElementComponent('cardCvc', isServer);\n/**\n * @docs https://stripe.com/docs/stripe-js/react#element-components\n */\n\nvar FpxBankElement = createElementComponent('fpxBank', isServer);\n/**\n * @docs https://stripe.com/docs/stripe-js/react#element-components\n */\n\nvar IbanElement = createElementComponent('iban', isServer);\n/**\n * @docs https://stripe.com/docs/stripe-js/react#element-components\n */\n\nvar IdealBankElement = createElementComponent('idealBank', isServer);\n/**\n * @docs https://stripe.com/docs/stripe-js/react#element-components\n */\n\nvar P24BankElement = createElementComponent('p24Bank', isServer);\n/**\n * @docs https://stripe.com/docs/stripe-js/react#element-components\n */\n\nvar EpsBankElement = createElementComponent('epsBank', isServer);\nvar PaymentElement = createElementComponent('payment', isServer);\n/**\n * Requires beta access:\n * Contact [Stripe support](https://support.stripe.com/) for more information.\n *\n * @docs https://stripe.com/docs/stripe-js/react#element-components\n */\n\nvar PayButtonElement = createElementComponent('payButton', isServer);\n/**\n * @docs https://stripe.com/docs/stripe-js/react#element-components\n */\n\nvar PaymentRequestButtonElement = createElementComponent('paymentRequestButton', isServer);\n/**\n * Requires beta access:\n * Contact [Stripe support](https://support.stripe.com/) for more information.\n *\n * @docs https://stripe.com/docs/stripe-js/react#element-components\n */\n\nvar LinkAuthenticationElement = createElementComponent('linkAuthentication', isServer);\n/**\n * @docs https://stripe.com/docs/stripe-js/react#element-components\n */\n\nvar AddressElement = createElementComponent('address', isServer);\n/**\n * @deprecated\n * Use `AddressElement` instead.\n *\n * @docs https://stripe.com/docs/stripe-js/react#element-components\n */\n\nvar ShippingAddressElement = createElementComponent('shippingAddress', isServer);\n/**\n * Requires beta access:\n * Contact [Stripe support](https://support.stripe.com/) for more information.\n *\n * @docs https://stripe.com/docs/elements/cart-element\n */\n\nvar CartElement = createElementComponent('cart', isServer);\n/**\n * @docs https://stripe.com/docs/stripe-js/react#element-components\n */\n\nvar PaymentMethodMessagingElement = createElementComponent('paymentMethodMessaging', isServer);\n/**\n * @docs https://stripe.com/docs/stripe-js/react#element-components\n */\n\nvar AffirmMessageElement = createElementComponent('affirmMessage', isServer);\n/**\n * @docs https://stripe.com/docs/stripe-js/react#element-components\n */\n\nvar AfterpayClearpayMessageElement = createElementComponent('afterpayClearpayMessage', isServer);\n\nexport { AddressElement, AffirmMessageElement, AfterpayClearpayMessageElement, AuBankAccountElement, CardCvcElement, CardElement, CardExpiryElement, CardNumberElement, CartElement, Elements, ElementsConsumer, EpsBankElement, FpxBankElement, IbanElement, IdealBankElement, LinkAuthenticationElement, P24BankElement, PayButtonElement, PaymentElement, PaymentMethodMessagingElement, PaymentRequestButtonElement, ShippingAddressElement, useCartElement, useCartElementState, useElements, useStripe };\n","var g=Object.defineProperty;var j=Object.getOwnPropertyDescriptor;var L=Object.getOwnPropertyNames;var V=Object.prototype.hasOwnProperty;var Y=(e,r)=>{for(var t in r)g(e,t,{get:r[t],enumerable:!0})},K=(e,r,t,o)=>{if(r&&typeof r==\"object\"||typeof r==\"function\")for(let s of L(r))!V.call(e,s)&&s!==t&&g(e,s,{get:()=>r[s],enumerable:!(o=j(r,s))||o.enumerable});return e};var $=e=>K(g({},\"__esModule\",{value:!0}),e);var h=(e,r,t)=>new Promise((o,s)=>{var i=a=>{try{l(t.next(a))}catch(m){s(m)}},c=a=>{try{l(t.throw(a))}catch(m){s(m)}},l=a=>a.done?o(a.value):Promise.resolve(a.value).then(i,c);l((t=t.apply(e,r)).next())});var W={};Y(W,{SubmissionError:()=>p,appendExtraData:()=>E,createClient:()=>F,getDefaultClient:()=>U,isSubmissionError:()=>A});module.exports=$(W);var u=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=\",J=/^(?:[A-Za-z\\d+\\/]{4})*?(?:[A-Za-z\\d+\\/]{2}(?:==)?|[A-Za-z\\d+\\/]{3}=?)?$/;function I(e){e=String(e);for(var r,t,o,s,i=\"\",c=0,l=e.length%3;c255||(o=e.charCodeAt(c++))>255||(s=e.charCodeAt(c++))>255)throw new TypeError(\"Failed to execute 'btoa' on 'Window': The string to be encoded contains characters outside of the Latin1 range.\");r=t<<16|o<<8|s,i+=u.charAt(r>>18&63)+u.charAt(r>>12&63)+u.charAt(r>>6&63)+u.charAt(r&63)}return l?i.slice(0,l-3)+\"===\".substring(l):i}function O(e){if(e=String(e).replace(/[\\t\\n\\f\\r ]+/g,\"\"),!J.test(e))throw new TypeError(\"Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded.\");e+=\"==\".slice(2-(e.length&3));for(var r,t=\"\",o,s,i=0;i>16&255):s===64?String.fromCharCode(r>>16&255,r>>8&255):String.fromCharCode(r>>16&255,r>>8&255,r&255);return t}var G=()=>navigator.webdriver||!!document.documentElement.getAttribute(O(\"d2ViZHJpdmVy\"))||!!window.callPhantom||!!window._phantom,y=class{constructor(){this.loadedAt=Date.now(),this.webdriver=G()}data(){return{loadedAt:this.loadedAt,webdriver:this.webdriver}}};var S=class{constructor(r){this.kind=\"success\";this.next=r.next}};function w(e){return\"next\"in e&&typeof e.next==\"string\"}var b=class{constructor(r,t){this.paymentIntentClientSecret=r;this.resubmitKey=t;this.kind=\"stripePluginPending\"}};function _(e){if(\"stripe\"in e&&\"resubmitKey\"in e&&typeof e.resubmitKey==\"string\"){let{stripe:r}=e;return typeof r==\"object\"&&r!=null&&\"paymentIntentClientSecret\"in r&&typeof r.paymentIntentClientSecret==\"string\"}return!1}function A(e){return e.kind===\"error\"}var p=class{constructor(...r){this.kind=\"error\";this.formErrors=[];this.fieldErrors=new Map;var t;for(let o of r){if(!o.field){this.formErrors.push({code:o.code&&z(o.code)?o.code:\"UNSPECIFIED\",message:o.message});continue}let s=(t=this.fieldErrors.get(o.field))!=null?t:[];s.push({code:o.code&&Q(o.code)?o.code:\"UNSPECIFIED\",message:o.message}),this.fieldErrors.set(o.field,s)}}getFormErrors(){return[...this.formErrors]}getFieldErrors(r){var t;return(t=this.fieldErrors.get(r))!=null?t:[]}getAllFieldErrors(){return Array.from(this.fieldErrors)}};function z(e){return e in B}var B={BLOCKED:\"BLOCKED\",EMPTY:\"EMPTY\",FILES_TOO_BIG:\"FILES_TOO_BIG\",FORM_NOT_FOUND:\"FORM_NOT_FOUND\",INACTIVE:\"INACTIVE\",NO_FILE_UPLOADS:\"NO_FILE_UPLOADS\",PROJECT_NOT_FOUND:\"PROJECT_NOT_FOUND\",TOO_MANY_FILES:\"TOO_MANY_FILES\"};function Q(e){return e in Z}var Z={REQUIRED_FIELD_EMPTY:\"REQUIRED_FIELD_EMPTY\",REQUIRED_FIELD_MISSING:\"REQUIRED_FIELD_MISSING\",STRIPE_CLIENT_ERROR:\"STRIPE_CLIENT_ERROR\",STRIPE_SCA_ERROR:\"STRIPE_SCA_ERROR\",TYPE_EMAIL:\"TYPE_EMAIL\",TYPE_NUMERIC:\"TYPE_NUMERIC\",TYPE_TEXT:\"TYPE_TEXT\"};function P(e){return\"errors\"in e&&Array.isArray(e.errors)&&e.errors.every(r=>typeof r.message==\"string\")||\"error\"in e&&typeof e.error==\"string\"}var D=\"3.0.1\";var v=e=>I(JSON.stringify(e)),N=e=>{let r=`@formspree/core@${D}`;return e?`${e} ${r}`:r};function E(e,r,t){e instanceof FormData?e.append(r,t):e[r]=t}function M(e){return e!==null&&typeof e==\"object\"}var R=class{constructor(r={}){this.project=r.project,this.stripe=r.stripe,typeof window!=\"undefined\"&&(this.session=new y)}submitForm(s,i){return h(this,arguments,function*(r,t,o={}){let c=o.endpoint||\"https://formspree.io\",l=this.project?`${c}/p/${this.project}/f/${r}`:`${c}/f/${r}`,a={Accept:\"application/json\",\"Formspree-Client\":N(o.clientName)};this.session&&(a[\"Formspree-Session-Data\"]=v(this.session.data())),t instanceof FormData||(a[\"Content-Type\"]=\"application/json\");function m(f){return h(this,null,function*(){try{let n=yield(yield fetch(l,{method:\"POST\",mode:\"cors\",body:f instanceof FormData?f:JSON.stringify(f),headers:a})).json();if(M(n)){if(P(n))return Array.isArray(n.errors)?new p(...n.errors):new p({message:n.error});if(_(n))return new b(n.stripe.paymentIntentClientSecret,n.resubmitKey);if(w(n))return new S({next:n.next})}return new p({message:\"Unexpected response format\"})}catch(d){let n=d instanceof Error?d.message:`Unknown error while posting to Formspree: ${JSON.stringify(d)}`;return new p({message:n})}})}if(this.stripe&&o.createPaymentMethod){let f=yield o.createPaymentMethod();if(f.error)return new p({code:\"STRIPE_CLIENT_ERROR\",field:\"paymentMethod\",message:\"Error creating payment method\"});E(t,\"paymentMethod\",f.paymentMethod.id);let d=yield m(t);if(d.kind===\"error\")return d;if(d.kind===\"stripePluginPending\"){let n=yield this.stripe.handleCardAction(d.paymentIntentClientSecret);if(n.error)return new p({code:\"STRIPE_CLIENT_ERROR\",field:\"paymentMethod\",message:\"Stripe SCA error\"});t instanceof FormData?t.delete(\"paymentMethod\"):delete t.paymentMethod,E(t,\"paymentIntent\",n.paymentIntent.id),E(t,\"resubmitKey\",d.resubmitKey);let x=yield m(t);return k(x),x}return d}let T=yield m(t);return k(T),T})}};function k(e){let{kind:r}=e;if(r!==\"success\"&&r!==\"error\")throw new Error(`Unexpected submission result (kind: ${r})`)}var F=e=>new R(e),U=()=>(C||(C=F()),C),C;0&&(module.exports={SubmissionError,appendExtraData,createClient,getDefaultClient,isSubmissionError});\n","'use strict';\n\nObject.defineProperty(exports, '__esModule', { value: true });\n\nfunction _typeof(obj) {\n \"@babel/helpers - typeof\";\n\n if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") {\n _typeof = function (obj) {\n return typeof obj;\n };\n } else {\n _typeof = function (obj) {\n return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj;\n };\n }\n\n return _typeof(obj);\n}\n\nvar V3_URL = 'https://js.stripe.com/v3';\nvar V3_URL_REGEX = /^https:\\/\\/js\\.stripe\\.com\\/v3\\/?(\\?.*)?$/;\nvar EXISTING_SCRIPT_MESSAGE = 'loadStripe.setLoadParameters was called but an existing Stripe.js script already exists in the document; existing script parameters will be used';\nvar findScript = function findScript() {\n var scripts = document.querySelectorAll(\"script[src^=\\\"\".concat(V3_URL, \"\\\"]\"));\n\n for (var i = 0; i < scripts.length; i++) {\n var script = scripts[i];\n\n if (!V3_URL_REGEX.test(script.src)) {\n continue;\n }\n\n return script;\n }\n\n return null;\n};\n\nvar injectScript = function injectScript(params) {\n var queryString = params && !params.advancedFraudSignals ? '?advancedFraudSignals=false' : '';\n var script = document.createElement('script');\n script.src = \"\".concat(V3_URL).concat(queryString);\n var headOrBody = document.head || document.body;\n\n if (!headOrBody) {\n throw new Error('Expected document.body not to be null. Stripe.js requires a element.');\n }\n\n headOrBody.appendChild(script);\n return script;\n};\n\nvar registerWrapper = function registerWrapper(stripe, startTime) {\n if (!stripe || !stripe._registerWrapper) {\n return;\n }\n\n stripe._registerWrapper({\n name: 'stripe-js',\n version: \"1.54.2\",\n startTime: startTime\n });\n};\n\nvar stripePromise = null;\nvar loadScript = function loadScript(params) {\n // Ensure that we only attempt to load Stripe.js at most once\n if (stripePromise !== null) {\n return stripePromise;\n }\n\n stripePromise = new Promise(function (resolve, reject) {\n if (typeof window === 'undefined' || typeof document === 'undefined') {\n // Resolve to null when imported server side. This makes the module\n // safe to import in an isomorphic code base.\n resolve(null);\n return;\n }\n\n if (window.Stripe && params) {\n console.warn(EXISTING_SCRIPT_MESSAGE);\n }\n\n if (window.Stripe) {\n resolve(window.Stripe);\n return;\n }\n\n try {\n var script = findScript();\n\n if (script && params) {\n console.warn(EXISTING_SCRIPT_MESSAGE);\n } else if (!script) {\n script = injectScript(params);\n }\n\n script.addEventListener('load', function () {\n if (window.Stripe) {\n resolve(window.Stripe);\n } else {\n reject(new Error('Stripe.js not available'));\n }\n });\n script.addEventListener('error', function () {\n reject(new Error('Failed to load Stripe.js'));\n });\n } catch (error) {\n reject(error);\n return;\n }\n });\n return stripePromise;\n};\nvar initStripe = function initStripe(maybeStripe, args, startTime) {\n if (maybeStripe === null) {\n return null;\n }\n\n var stripe = maybeStripe.apply(undefined, args);\n registerWrapper(stripe, startTime);\n return stripe;\n}; // eslint-disable-next-line @typescript-eslint/explicit-module-boundary-types\n\nvar validateLoadParams = function validateLoadParams(params) {\n var errorMessage = \"invalid load parameters; expected object of shape\\n\\n {advancedFraudSignals: boolean}\\n\\nbut received\\n\\n \".concat(JSON.stringify(params), \"\\n\");\n\n if (params === null || _typeof(params) !== 'object') {\n throw new Error(errorMessage);\n }\n\n if (Object.keys(params).length === 1 && typeof params.advancedFraudSignals === 'boolean') {\n return params;\n }\n\n throw new Error(errorMessage);\n};\n\nvar loadParams;\nvar loadStripeCalled = false;\nvar loadStripe = function loadStripe() {\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n loadStripeCalled = true;\n var startTime = Date.now();\n return loadScript(loadParams).then(function (maybeStripe) {\n return initStripe(maybeStripe, args, startTime);\n });\n};\n\nloadStripe.setLoadParameters = function (params) {\n // we won't throw an error if setLoadParameters is called with the same values as before\n if (loadStripeCalled && loadParams) {\n var validatedParams = validateLoadParams(params);\n var parameterKeys = Object.keys(validatedParams);\n var sameParameters = parameterKeys.reduce(function (previousValue, currentValue) {\n var _loadParams;\n\n return previousValue && params[currentValue] === ((_loadParams = loadParams) === null || _loadParams === void 0 ? void 0 : _loadParams[currentValue]);\n }, true);\n\n if (sameParameters) {\n return;\n }\n }\n\n if (loadStripeCalled) {\n throw new Error('You cannot change load parameters after calling loadStripe');\n }\n\n loadParams = validateLoadParams(params);\n};\n\nexports.loadStripe = loadStripe;\n","import{CardElement as me}from\"@stripe/react-stripe-js\";import D from\"react\";function T(e){let{prefix:t,field:s,errors:r,...i}=e;if(r==null)return null;let a=s?r.getFieldErrors(s):r.getFormErrors();return a.length===0?null:D.createElement(\"div\",{...i},t?`${t} `:null,a.map(l=>l.message).join(\", \"))}import{createClient as g,getDefaultClient as C}from\"@formspree/core\";import{Elements as V}from\"@stripe/react-stripe-js\";import{loadStripe as j}from\"@stripe/stripe-js/pure.js\";import b,{useContext as R,useEffect as E,useMemo as w,useState as M}from\"react\";var v=b.createContext(null);function _(e){let{children:t,project:s,stripePK:r}=e,[i,a]=M(g({project:s})),l=w(()=>r?j(r):null,[r]);return E(()=>{let n=!0;return n&&a(o=>o.project!==s?g({...o,project:s}):o),()=>{n=!1}},[s]),E(()=>{let n=!0;return l?.then(o=>{n&&o&&a(m=>g({...m,stripe:o}))}),()=>{n=!1}},[l]),b.createElement(v.Provider,{value:{client:i}},l?b.createElement(V,{stripe:l},t):t)}function F(){return R(v)??{client:C()}}import{useState as d}from\"react\";import{appendExtraData as A,isSubmissionError as H}from\"@formspree/core\";import{CardElement as B}from\"@stripe/react-stripe-js\";import{useMemo as K}from\"react\";var P=\"2.5.1\";var N=`@formspree/react@${P}`;function x(e,t={}){let s=F(),{client:r=s.client,extraData:i,onError:a,onSuccess:l,origin:n}=t,{stripe:o}=r,m=K(()=>o?.elements().getElement(B),[o]);return async function(p){let u=O(p)?U(p):p;if(typeof i==\"object\")for(let[h,y]of Object.entries(i)){let c;typeof y==\"function\"?c=await y():c=y,c!==void 0&&A(u,h,c)}let f=await r.submitForm(e,u,{endpoint:n,clientName:N,createPaymentMethod:o&&m?()=>o.createPaymentMethod({type:\"card\",card:m,billing_details:z(u)}):void 0});H(f)?a?.(f):l?.(f)}}function O(e){return\"preventDefault\"in e&&typeof e.preventDefault==\"function\"}function U(e){e.preventDefault();let t=e.currentTarget;if(t.tagName!=\"FORM\")throw new Error(\"submit was triggered for a non-form element\");return new FormData(t)}function z(e){let t={address:I(e)};for(let s of[\"name\",\"email\",\"phone\"]){let r=e instanceof FormData?e.get(s):e[s];r&&typeof r==\"string\"&&(t[s]=r)}return t}function I(e){let t={};for(let[s,r]of[[\"address_line1\",\"line1\"],[\"address_line2\",\"line2\"],[\"address_city\",\"city\"],[\"address_country\",\"country\"],[\"address_state\",\"state\"],[\"address_postal_code\",\"postal_code\"]]){let i=e instanceof FormData?e.get(s):e[s];i&&typeof i==\"string\"&&(t[r]=i)}return t}function W(e,t={}){let[s,r]=d(null),[i,a]=d(null),[l,n]=d(!1),[o,m]=d(!1);if(!e)throw new Error('You must provide a form key or hashid (e.g. useForm(\"myForm\") or useForm(\"123xyz\")');let S=x(e,{client:t.client,extraData:t.data,onError(p){r(p),n(!1),m(!1)},onSuccess(p){r(null),a(p),n(!1),m(!0)},origin:t.endpoint});return[{errors:s,result:i,submitting:l,succeeded:o},async function(u){n(!0),await S(u)},function(){r(null),a(null),n(!1),m(!1)}]}export{me as CardElement,_ as FormspreeProvider,T as ValidationError,W as useForm,F as useFormspree,x as useSubmit};\n","import React from 'react';\nimport { CheckCircle, ArrowRight } from 'lucide-react';\nimport { useForm, ValidationError } from '@formspree/react';\n\nexport default function CTA() {\n const [state, handleSubmit] = useForm(\"mgvokgrd\");\n\n const benefits = [\n \"Free IT infrastructure assessment\",\n \"Same-day support response\",\n \"Customized security solutions\",\n \"Flexible service plans\"\n ];\n\n return (\n
\n
\n
\n \n
\n
\n
\n

\n Ready to Transform Your IT Infrastructure?\n

\n

\n Schedule a free consultation with our experts and discover how UCX can protect and optimize your business technology.\n

\n
    \n {benefits.map((benefit, index) => (\n
  • \n
    \n \n
    \n {benefit}\n
  • \n ))}\n
\n
\n \n
\n
\n
\n

Get Started Today

\n {state.succeeded ? (\n
\n
\n \n
\n

Thanks for contacting us! We'll get back to you soon.

\n
\n ) : (\n
\n
\n \n \n \n
\n
\n \n \n \n
\n
\n \n \n \n
\n
\n \n \n \n
\n \n {state.submitting ? (\n 'Sending...'\n ) : (\n <>\n Schedule Consultation\n \n \n )}\n \n \n )}\n
\n
\n
\n
\n
\n );\n}","import React from 'react';\nimport { Link } from 'react-router-dom';\nimport { Mail, Phone, MapPin, Facebook, Twitter, Linkedin, ExternalLink, Clock, ChevronRight } from 'lucide-react';\n\nexport default function Footer() {\n const socialLinks = [\n { icon: Linkedin, href: \"https://www.linkedin.com/company/unified-connexions-inc-/\", label: \"LinkedIn\" },\n { icon: Twitter, href: \"https://x.com/ConneXionsDFW/\", label: \"X (Twitter)\" },\n { icon: Facebook, href: \"https://www.facebook.com/unifiedconnexions/\", label: \"Facebook\" }\n ];\n\n const footerLinks = {\n solutions: {\n title: \"Solutions\",\n links: [\n { label: \"Managed IT\", href: \"/services/managed-it\" },\n { label: \"Co-Managed IT\", href: \"/services/co-managed-it\" },\n { label: \"Cybersecurity\", href: \"/services/cybersecurity\" },\n { label: \"Professional Services\", href: \"/services/professional-services\" },\n { label: \"Consulting Services\", href: \"/services/consulting\" }\n ]\n },\n company: {\n title: \"Company\",\n links: [\n { label: \"About Us\", href: \"/about\" },\n { label: \"Leadership\", href: \"/leadership\" },\n { label: \"Careers\", href: \"/careers\" },\n { label: \"Contact\", href: \"/contact\" }\n ]\n },\n support: {\n title: \"Support\",\n links: [\n { label: \"Remote Support\", href: \"/remote-support\" },\n { label: \"Monitoring Portal\", href: \"https://ucx.logicmonitor.com\", external: true }\n ]\n },\n legal: {\n title: \"Legal\",\n links: [\n { label: \"Privacy Policy\", href: \"/privacy-policy\" },\n { label: \"Terms & Conditions\", href: \"/terms-conditions\" },\n { label: \"Cookie Policy\", href: \"/cookie-policy\" }\n ]\n }\n };\n\n return (\n
\n
\n {/* Main Footer Content */}\n
\n {/* Company Info - Takes 2 columns */}\n
\n
\n \n \"UCX\n \n

\n Your trusted partner in IT management and cybersecurity solutions, delivering enterprise-grade technology services with unmatched expertise.\n

\n
\n\n {/* Social Links */}\n
\n {socialLinks.map((social, index) => (\n \n
\n \n
\n \n ))}\n
\n
\n\n {/* Quick Links - Takes 3 columns */}\n
\n {Object.entries(footerLinks).slice(0, 3).map(([key, section]) => (\n
\n

\n {section.title}\n

\n
    \n {section.links.map((link, index) => (\n
  • \n {link.external ? (\n \n {link.label}\n \n \n ) : (\n \n {link.label}\n \n )}\n
  • \n ))}\n
\n
\n ))}\n
\n\n {/* Contact Info - Takes 1 column */}\n
\n

\n Contact Us\n

\n
\n \n \n 844-219-3935\n \n \n \n sales@ucx.co\n \n
\n \n
\n

1348 Hwy 287, Suite 300

\n

Waxahachie, TX 75165

\n
\n
\n
\n
\n
\n\n {/* Bottom Bar */}\n
\n
\n
\n © 2024 Unified ConneXions\n {footerLinks.legal.links.map((link, index) => (\n \n {link.label}\n \n ))}\n
\n
\n

\n Designed & Developed by{' '}\n \n Aikarotech\n \n

\n
\n
\n
\n
\n
\n );\n}","import React from 'react';\nimport { Building2, Target, Users, ArrowRight, CheckCircle, Globe2, Award, Briefcase, Heart, Shield, HandshakeIcon, Users2 } from 'lucide-react';\n\nexport default function About() {\n const values = [\n { \n icon: Heart, \n title: \"Passion\", \n description: \"Driven by our love for technology and service excellence\",\n details: \"We approach every project with enthusiasm and dedication, constantly pushing the boundaries of what's possible in IT solutions. Our team's passion for technology translates into innovative solutions that exceed expectations.\"\n },\n { \n icon: Shield, \n title: \"Integrity\", \n description: \"Maintaining the highest ethical standards in all our dealings\",\n details: \"Trust is the foundation of our business. We operate with complete transparency, honesty, and accountability, ensuring that every decision and action aligns with our clients' best interests.\"\n },\n { \n icon: HandshakeIcon, \n title: \"Commitment\", \n description: \"Dedicated to delivering the best solutions for our clients\",\n details: \"We go above and beyond to ensure our clients' success. Our commitment extends beyond project completion to building lasting partnerships and ensuring continuous improvement.\"\n },\n { \n icon: Users2, \n title: \"Loyalty\", \n description: \"Building lasting relationships with our clients and partners\",\n details: \"Our success is measured by the long-term relationships we build. We stand by our clients through challenges and victories, providing unwavering support and dedication to their growth.\"\n }\n ];\n\n const expertise = [\n \"Network Design & Implementation\",\n \"High-Speed Wireless Communications\",\n \"LAN & WAN Environments\",\n \"Application Training\",\n \"Technology Consulting\",\n \"Network Training\"\n ];\n\n return (\n
\n {/* Hero Section */}\n
\n
\n
\n
\n

\n Empowering Success Through Technology\n

\n

\n Unified ConneXions, Inc. is a Dallas, Texas-based company, committed to providing expert, professional, and state-of-the-art IT services to corporate, government, and educational institutions.\n

\n
\n
\n
\n\n {/* Mission Statement */}\n
\n
\n
\n
\n
\n
\n
\n \n Our Mission\n \n
\n
\n \n
\n

\n \"Unified ConneXions is dedicated to helping corporate, government, and educational institutions by delivering world class technology solutions and services while incorporating the values of passion, integrity, commitment, and loyalty.\"\n

\n
\n
\n
\n\n {/* Values Section */}\n
\n
\n
\n

Our Core Values

\n

The principles that guide everything we do

\n
\n \n
\n {values.map((value, index) => (\n
\n
\n
\n
\n \n
\n
\n \n
\n \n

\n {value.title}\n

\n \n

\n {value.description}\n

\n \n

\n {value.details}\n

\n
\n \n
\n
\n
\n ))}\n
\n
\n
\n\n {/* Expertise Section */}\n
\n
\n
\n
\n

Our Expertise

\n

\n We offer a wide range of services for any size organization, delivering quality, turnkey solutions that meet all of your IT requirements through cost-effective solutions.\n

\n
    \n {expertise.map((item, index) => (\n
  • \n \n {item}\n
  • \n ))}\n
\n
\n
\n
\n \"IT\n
\n
\n
\n
\n\n {/* CTA Section */}\n
\n
\n
\n
\n
\n
\n

\n Ready to Transform Your IT Infrastructure?\n

\n

\n Let's discuss how we can help move your organization forward with the right technology solutions.\n

\n \n Get Started Today\n \n \n
\n
\n
\n
\n
\n
\n );\n}","import React from 'react';\nimport { Mail, Linkedin } from 'lucide-react';\n\nconst leaders = [\n {\n name: \"Joe O'Daniel\",\n title: \"President & CEO\",\n image: \"https://i.ibb.co/ZRL544dV/Screenshot-2025-01-29-at-7-53-26-PM.png\",\n email: \"joe@ucx.co\",\n linkedin: \"https://www.linkedin.com/in/joseph-o-daniel-03618a1/\",\n bio: \"Joseph O'Daniel is an expert in network technology, security, and virtualization. He has a long and stellar career in technology, beginning with serving four years in the US Army, stationed in Germany. Following that service, Joe owned or was CTO of several businesses, all related to computer hardware or software. For 10 years, he was also Director of Technology in a Dallas area school district. Joe's passion of focusing on each customer's unique needs drives the Unified ConneXions team to focus on innovative and long-term problem solving and provide the exemplary service needed in today's fast paced world.\"\n },\n {\n name: \"Chris Cunningham\",\n title: \"Senior Vice President & CFO\",\n image: \"https://i.ibb.co/sd7SW1zG/Screenshot-2025-01-29-at-7-53-36-PM.png\",\n email: \"chris@ucx.co\",\n linkedin: \"https://www.linkedin.com/in/chris-cunningham-b59b471b/\",\n bio: \"Chris Cunningham provides broad financial leadership at Unified ConneXions, with responsibility for the organization's accounting, treasury, risk control, business planning and analysis, tax, legal, and investor relations. In addition to his proven ability in facilitation, problem-solving, crisis management and conflict resolution, Chris' experience includes aligning corporate financial initiatives to achieve company objectives and leading organizations through aggressive growth and change. Previously, Chris has held senior financial management positions at HVE ConneXions, Inc. He began his career as the Director of Information Technology at a leading academic institution in Dallas. Chris is a member of the North Texas CFO Association. He earned his Bachelor of Science degree from Howard Payne University and MBA in business administration with a concentration in management and information systems from Dallas Baptist University.\"\n },\n {\n name: \"Jon Linsenbardt\",\n title: \"Sr. Director of Managed Service\",\n image: \"https://i.ibb.co/nqQNL4Jt/Screenshot-2025-01-29-at-7-53-43-PM.png\",\n email: \"jon@ucx.co\",\n linkedin: \"https://www.linkedin.com/in/jon-linsenbardt-64a1b949/\",\n bio: \"Jon Linsenbardt oversees all corporate and education client monitoring solutions for Unified ConneXions. Through his previous experience in designing and implementing desktop virtualization environments as well as server virtualization environments for multiple clients, Jon offers exceptional expertise in troubleshooting and diagnosing across all customer systems, regardless of size or configuration. He also is an expert in Microsoft Services, including Server, Active Directory, Exchange, and SharePoint.\"\n },\n {\n name: \"Mark Dickson\",\n title: \"Director of Systems Engineering\",\n image: \"https://i.ibb.co/BHxPqHfz/Screenshot-2025-01-29-at-7-53-48-PM.png\",\n email: \"mark@ucx.co\",\n linkedin: \"https://www.linkedin.com/in/mark-dickson-25311569/\",\n bio: \"Mark Dickson is one of Unified ConneXions' leading subject matter experts in Microsoft Enterprise and Productivity Solutions. Mark has spent over 15 years in the information technology field, and since joining Unified ConneXions in 2010, has delivered a broad range of solutions to customers in enterprise integration, business intelligence, and cloud services. Prior to his work at UCX, Mark held various technical and management positions in education and government institutions in north Texas.\"\n }\n];\n\nexport default function Leadership() {\n return (\n
\n {/* Hero Section */}\n
\n
\n
\n

\n Meet Our Leadership Team\n

\n

\n Our experienced leadership team brings decades of expertise in technology, business operations, and customer service to drive innovation and excellence in everything we do.\n

\n
\n
\n
\n\n {/* Leadership Grid */}\n
\n
\n
\n {leaders.map((leader) => (\n
\n
\n {/* Image Section */}\n
\n
\n \n
\n
\n\n {/* Content Section */}\n
\n
\n
\n

\n {leader.name}\n

\n

\n {leader.title}\n

\n
\n \n
\n \n \n Email\n \n \n \n LinkedIn\n \n
\n
\n\n

\n {leader.bio}\n

\n
\n
\n
\n ))}\n
\n
\n
\n
\n );\n}","import React from 'react';\nimport { Mail, Phone, MapPin, MessageSquare, CheckCircle, ArrowRight, ExternalLink } from 'lucide-react';\nimport { useForm } from '@formspree/react';\n\nexport default function Contact() {\n const [state, handleSubmit] = useForm(\"mgvokgrd\");\n\n const contactInfo = [\n {\n icon: Phone,\n title: \"Feel Free To Call Us At\",\n value: \"844-219-3935\",\n href: \"tel:844-219-3935\",\n description: \"24/7 Support Available\"\n },\n {\n icon: Mail,\n title: \"Feel Free To Email Us At\",\n value: \"sales@ucx.co\",\n href: \"mailto:sales@ucx.co\",\n description: \"We'll respond promptly\"\n },\n {\n icon: MapPin,\n title: \"Feel Free To Visit Us At\",\n value: \"1348 Hwy 287, Suite 300\",\n subValue: \"Waxahachie, TX 75165\",\n href: \"https://www.google.ca/maps/place/Unified+ConneXions/@32.4232846,-96.8506022,17.34z/\",\n description: \"24/7 Support Available\"\n }\n ];\n\n return (\n
\n {/* Hero Section */}\n
\n
\n
\n
\n \n
\n
\n

\n \n Let's Connect\n \n

\n

\n Get in touch with our team of experts and discover how we can transform your IT infrastructure.\n

\n
\n
\n
\n\n {/* Contact Cards */}\n
\n
\n
\n {contactInfo.map((info, index) => (\n \n
\n
\n
\n \n
\n
\n

{info.title}

\n

{info.value}

\n {info.subValue && (\n

{info.subValue}

\n )}\n

{info.description}

\n
\n
\n \n ))}\n
\n
\n
\n\n {/* Main Content */}\n
\n
\n {/* Map Section */}\n
\n
\n \n
\n
\n
\n

UCX Headquarters

\n

1348 Hwy 287, Suite 300, Waxahachie, TX 75165

\n \n Get Directions\n \n \n
\n
\n
\n
\n\n {/* Contact Form */}\n
\n
\n
\n
\n
\n \n
\n
\n

Send Us a Message

\n

We'll get back to you promptly

\n
\n
\n\n {state.succeeded ? (\n
\n
\n \n
\n

Message Sent!

\n

\n Thanks for reaching out. We'll get back to you soon.\n

\n
\n ) : (\n
\n
\n
\n \n \n
\n
\n \n \n
\n
\n
\n \n \n
\n
\n \n \n
\n \n {state.submitting ? (\n <>\n
\n Sending...\n \n ) : (\n 'Send Message'\n )}\n \n \n )}\n
\n
\n
\n
\n
\n );\n}","import React from 'react';\nimport { ArrowRight, Briefcase, Users, Heart, Star, DollarSign } from 'lucide-react';\n\nexport default function Careers() {\n const benefits = [\n {\n icon: DollarSign,\n title: \"Competitive Compensation\",\n description: \"Attractive salary packages with performance bonuses and regular reviews\"\n },\n {\n icon: Heart,\n title: \"Health & Wellness\",\n description: \"Comprehensive health coverage, dental, and vision insurance\"\n },\n {\n icon: Star,\n title: \"Professional Growth\",\n description: \"Training programs, certification support, and career advancement opportunities\"\n },\n {\n icon: Users,\n title: \"Work-Life Balance\",\n description: \"Flexible schedules, paid time off, and remote work options\"\n }\n ];\n\n return (\n
\n {/* Hero Section */}\n
\n
\n
\n \n
\n
\n

\n Join Our Team\n

\n

\n Be part of a team that's transforming IT services and making a difference in businesses across Texas.\n

\n \n View Opportunities\n \n \n
\n
\n
\n\n {/* Benefits Section */}\n
\n
\n
\n

Why Work With Us?

\n

\n Join a company that values its employees and invests in their growth and well-being\n

\n
\n\n
\n {benefits.map((benefit, index) => (\n
\n
\n
\n
\n \n
\n

{benefit.title}

\n

{benefit.description}

\n
\n
\n ))}\n
\n
\n
\n\n {/* Indeed Integration */}\n
\n
\n
\n \"UCX\n

Join Our Growing Team

\n

\n Explore our current openings and become part of a company that's dedicated to innovation, growth, and excellence in IT services.\n

\n
\n \n \n View Open Positions\n \n \n \n Submit Your Resume\n \n
\n
\n
\n
\n
\n );\n}","import React from 'react';\nimport { ExternalLink } from 'lucide-react';\n\nconst portalLinks = [\n {\n title: \"Monitoring Portal\",\n description: \"Access your monitoring dashboard to view system status and alerts.\",\n url: \"https://ucx.logicmonitor.com\",\n buttonText: \"Open Monitoring Portal\"\n },\n {\n title: \"Remote Support\",\n description: \"Get immediate remote support from our technical team.\",\n url: \"https://rmmus-unifiedconnexions.screenconnect.com/?Theme=Embedded\",\n buttonText: \"Start Remote Session\"\n }\n];\n\nexport default function CustomerPortal() {\n return (\n
\n
\n

Customer Portal

\n
\n {portalLinks.map((portal) => (\n
\n
\n
\n

{portal.title}

\n

{portal.description}

\n \n {portal.buttonText}\n \n \n
\n
\n ))}\n
\n
\n
\n );\n}","import React from 'react';\nimport { ArrowRight, Monitor, Shield, Clock, ExternalLink } from 'lucide-react';\n\nexport default function RemoteSupport() {\n return (\n
\n {/* Hero Section */}\n
\n
\n
\n

Remote Support

\n

\n Get immediate technical assistance from our expert support team, no matter where you are.\n

\n
\n \n \n 24/7 Support: 844-219-3935\n \n \n Email Support\n \n \n
\n
\n
\n
\n\n {/* Remote Support Section */}\n
\n
\n
\n
\n \n
\n
\n

Remote Support Portal

\n

Connect with our technical team for immediate assistance

\n
\n
\n\n
\n
\n
\n \n
\n

\n This is a secure connection to our remote support system. Our technicians will only connect with your explicit permission.\n

\n
\n
\n\n
\n \n \n Launch Remote Support Portal\n \n \n
\n
\n
\n
\n );\n}","import React from 'react';\n\nexport default function PrivacyPolicy() {\n return (\n
\n {/* Header Section */}\n
\n
\n

Privacy Policy

\n

Last updated: January 30, 2025

\n
\n
\n\n {/* Main Content Section */}\n
\n
\n

\n At UCX, we take your privacy seriously. This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you visit our website or use our services.\n

\n \n

Information We Collect

\n

We collect various types of information, including:

\n
    \n
  • Personal Information: Name, email address, phone number.
  • \n
  • Company Information: Business name, industry, and role.
  • \n
  • Account Credentials: Username, password (encrypted), and authentication details.
  • \n
  • Payment Information: Billing details, transaction history, and payment method.
  • \n
  • Communication Preferences: Marketing opt-ins and notification settings.
  • \n
\n\n

How We Use Your Information

\n

\n We use the collected information for the following purposes:\n

\n
    \n
  • To provide, operate, and improve our services.
  • \n
  • To process transactions and send related information.
  • \n
  • To send administrative and support communications.
  • \n
  • To personalize user experience and content recommendations.
  • \n
  • To enforce our terms, conditions, and policies.
  • \n
  • To ensure compliance with applicable legal obligations.
  • \n
\n\n

Information Sharing

\n

\n We do not sell or rent your personal data. However, we may share your information with:\n

\n
    \n
  • Service Providers: Third-party companies that assist in delivering our services.
  • \n
  • Professional Advisors: Legal, financial, and consulting professionals.
  • \n
  • Regulatory Authorities: Government bodies when required by law or in response to legal processes.
  • \n
\n\n

Security Measures

\n

\n We implement advanced security protocols to protect your data, including:\n

\n
    \n
  • Encryption of sensitive information.
  • \n
  • Regular security audits and penetration testing.
  • \n
  • Access controls and authentication measures.
  • \n
  • Secure data storage and retention policies.
  • \n
\n\n

Your Rights and Choices

\n

\n Depending on your location, you may have the following rights:\n

\n
    \n
  • Access: Request a copy of your personal data.
  • \n
  • Correction: Update inaccurate or incomplete information.
  • \n
  • Deletion: Request the removal of your personal data.
  • \n
  • Objection: Restrict the processing of your data.
  • \n
  • Data Portability: Obtain your data in a structured format.
  • \n
\n\n

Policy Updates

\n

\n We may update this Privacy Policy periodically. Changes will be posted on this page with a revised date.\n

\n\n

Contact Us

\n

\n If you have any questions or concerns, please contact us:\n

\n \n
\n
\n
\n );\n}\n","import React from 'react';\n\nexport default function TermsConditions() {\n return (\n
\n {/* Header Section */}\n
\n
\n

Terms & Conditions

\n

Last updated: January 30, 2025

\n
\n
\n\n {/* Main Content Section */}\n
\n
\n

\n These Terms and Conditions govern your use of UCX's website and services. By accessing or using our services, you agree to be bound by these terms.\n

\n \n

Acceptance of Terms

\n

\n By accessing our website or using our services, you acknowledge that you have read, understood, and agree to be bound by these terms.\n

\n\n

Service Description

\n

\n UCX provides a range of IT management and cybersecurity solutions, including:\n

\n
    \n
  • Managed IT Services
  • \n
  • Co-Managed IT Solutions
  • \n
  • Cybersecurity Services
  • \n
  • Professional Services
  • \n
  • Consulting Services
  • \n
\n\n

User Responsibilities

\n

\n As a user, you agree to:\n

\n
    \n
  • Provide accurate and up-to-date information.
  • \n
  • Maintain the confidentiality and security of your account credentials.
  • \n
  • Comply with all applicable laws and regulations.
  • \n
  • Use our services for lawful and intended purposes only.
  • \n
  • Report any unauthorized access or security breaches immediately.
  • \n
\n\n

Intellectual Property

\n

\n All content, features, and functionality provided by UCX, including text, graphics, logos, images, software, and other materials, are owned by UCX and are protected by copyright, trademark, and other intellectual property laws.\n

\n\n

Limitation of Liability

\n

\n UCX shall not be liable for any indirect, incidental, special, consequential, or punitive damages arising out of your use of our services, including but not limited to loss of data, revenue, or business opportunities.\n

\n\n

Modification of Terms

\n

\n We reserve the right to update or modify these Terms & Conditions at any time. Changes will be communicated through our website or via email. Continued use of our services after modifications constitutes acceptance of the updated terms.\n

\n\n

Governing Law

\n

\n These Terms & Conditions are governed by and construed in accordance with the laws of the State of Texas, without regard to its conflict of law principles.\n

\n\n

Contact Information

\n

\n If you have any questions or concerns regarding these Terms & Conditions, please contact us:\n

\n \n
\n
\n
\n );\n}\n","import React from 'react';\n\nexport default function CookiePolicy() {\n return (\n
\n {/* Header Section */}\n
\n
\n

Cookie Policy

\n

Last updated: January 30, 2025

\n
\n
\n\n {/* Main Content Section */}\n
\n
\n

\n This Cookie Policy explains how UCX uses cookies and similar tracking technologies when you visit our website. We aim to be transparent about what information we collect, why we collect it, and how you can manage your preferences.\n

\n \n

What Are Cookies?

\n

\n Cookies are small text files that are stored on your device (computer, tablet, or mobile) when you visit a website. They help websites function properly, improve user experience, and provide analytical insights.\n

\n\n

Types of Cookies We Use

\n

We use various types of cookies to enhance your browsing experience and gather valuable insights:

\n
    \n
  • Essential Cookies: Required for basic website functionality, such as security and accessibility.
  • \n
  • Performance Cookies: Collect anonymous data about how users interact with our website to optimize functionality.
  • \n
  • Analytics Cookies: Provide insights into user behavior to improve website performance and content.
  • \n
  • Functionality Cookies: Remember your preferences, such as language and location settings.
  • \n
  • Marketing Cookies: Track browsing habits to deliver personalized advertisements and promotions.
  • \n
\n\n

How We Use Cookies

\n

\n Our use of cookies falls into the following categories:\n

\n
    \n
  • Authentication & Security: Verify user identity and protect against fraud.
  • \n
  • Performance & Analytics: Monitor website traffic and improve the user experience.
  • \n
  • Personalization: Customize content based on user preferences and behavior.
  • \n
  • Marketing & Advertising: Display relevant ads based on browsing activity.
  • \n
\n\n

Managing Your Cookie Preferences

\n

\n You have control over your cookie settings and can manage them in the following ways:\n

\n
    \n
  • Adjust your browser settings to accept, block, or delete cookies.
  • \n
  • Use cookie management tools provided by third parties.
  • \n
  • Opt-out of certain cookies, such as tracking or targeted advertising, via industry-standard opt-out mechanisms.
  • \n
\n

\n Please note that disabling certain cookies may impact your experience on our website and limit some of its functionalities.\n

\n\n

Third-Party Cookies

\n

\n We may partner with third-party services that use cookies for analytics, advertising, and functionality purposes. These third-party providers have their own privacy and cookie policies, which govern their data collection and processing.\n

\n\n

Data Retention & Privacy

\n

\n The information collected through cookies is stored securely and retained only for as long as necessary to fulfill its intended purpose. We adhere to strict privacy guidelines to ensure data protection and compliance with relevant regulations.\n

\n\n

Updates to This Policy

\n

\n We reserve the right to update this Cookie Policy periodically to reflect changes in technology, legal requirements, or our business practices. Any updates will be posted on this page with a revised date.\n

\n\n

Contact Us

\n

\n If you have any questions or concerns about our use of cookies, please reach out to us:\n

\n \n
\n
\n
\n );\n}\n","import React, { useState, useEffect } from 'react';\nimport { ArrowRight, Phone, Mail, CheckCircle, ArrowDown, ExternalLink } from 'lucide-react';\nimport { useForm, ValidationError } from '@formspree/react';\n\ninterface ServicePageProps {\n title: string;\n description: string;\n features: {\n icon: any;\n title: string;\n description: string;\n details: string[];\n }[];\n stats: {\n icon: any;\n value: string;\n label: string;\n }[];\n process: {\n number: number;\n title: string;\n description: string;\n }[];\n}\n\nexport default function ServicePage({\n title,\n description,\n features,\n stats,\n process\n}: ServicePageProps) {\n const [activeFeature, setActiveFeature] = useState(null);\n const [scrolled, setScrolled] = useState(false);\n const [state, handleSubmit] = useForm(\"mgvokgrd\");\n\n useEffect(() => {\n const handleScroll = () => {\n setScrolled(window.scrollY > 50);\n };\n window.addEventListener('scroll', handleScroll);\n return () => window.removeEventListener('scroll', handleScroll);\n }, []);\n\n return (\n
\n {/* Hero Section */}\n
\n
\n
\n \n
\n
\n
\n Enterprise Solutions\n \n {title}\n
\n \n

\n {title}\n

\n

\n {description}\n

\n \n
\n \n \n Schedule a Consultation\n \n \n
\n \n \n \n \n \n 844-219-3935\n \n \n
\n
\n
\n \n
\n \n
\n
\n\n {/* Stats Section */}\n
\n
\n
\n
\n {stats.map((stat, index) => (\n
\n
\n
\n
\n \n
\n
{stat.value}
\n
{stat.label}
\n
\n
\n ))}\n
\n
\n
\n\n {/* Features Section */}\n
\n
\n
\n

\n Comprehensive Solutions\n

\n

\n Enterprise-grade solutions designed to transform your business operations\n

\n
\n\n
\n {features.map((feature, index) => (\n setActiveFeature(index)}\n onMouseLeave={() => setActiveFeature(null)}\n >\n
\n
\n \n
\n
\n \n
\n \n

{feature.title}

\n

{feature.description}

\n \n
\n {feature.details.map((detail, idx) => (\n
\n \n {detail}\n
\n ))}\n
\n
\n
\n ))}\n
\n
\n
\n\n {/* Process Section */}\n
\n
\n
\n
\n

Our Process

\n

\n A proven methodology for successful implementation and lasting results\n

\n
\n\n
\n {process.map((step, index) => (\n
\n
\n
\n
\n {step.number}\n
\n

{step.title}

\n

{step.description}

\n
\n {index < process.length - 1 && (\n
\n
\n
\n )}\n
\n ))}\n
\n
\n
\n\n {/* Contact Section */}\n
\n
\n
\n
\n
\n Get Started Today\n
\n

\n Transform Your Business with {title}\n

\n

\n Take the first step towards optimizing your IT infrastructure. Our team of experts is ready to help you succeed.\n

\n
\n \n
\n \n
\n
\n

Call Us

\n

844-219-3935

\n
\n \n \n
\n \n
\n
\n

Email Us

\n

support@ucx.co

\n
\n \n
\n
\n
\n
\n
\n

Schedule a Consultation

\n {state.succeeded ? (\n
\n
\n \n
\n

Message Sent!

\n

\n Thanks for reaching out. We'll get back to you soon.\n

\n
\n ) : (\n
\n
\n \n \n \n
\n
\n \n \n \n
\n
\n \n \n \n
\n
\n \n \n \n
\n \n {state.submitting ? (\n <>\n
\n Sending...\n \n ) : (\n 'Send Message'\n )}\n \n \n )}\n
\n
\n
\n
\n
\n \n );\n}","import React from 'react';\nimport { Server, Shield, Clock, Users, CheckCircle, Star } from 'lucide-react';\nimport ServicePage from './ServicePage';\n\nconst managedITData = {\n title: \"Managed IT Services\",\n description: \"Transform your IT infrastructure with our comprehensive managed services. We handle everything from day-to-day operations to strategic planning.\",\n features: [\n {\n icon: Server,\n title: \"24/7 Infrastructure Monitoring\",\n description: \"Round-the-clock monitoring and management of your entire IT infrastructure\",\n details: [\n \"Real-time system monitoring and alerting\",\n \"Proactive issue detection and resolution\",\n \"Performance tracking and optimization\",\n \"Automated maintenance and updates\"\n ]\n },\n {\n icon: Shield,\n title: \"Comprehensive Security\",\n description: \"Multi-layered security approach to protect your business\",\n details: [\n \"Advanced threat protection\",\n \"Endpoint security management\",\n \"Regular security audits\",\n \"Security awareness training\"\n ]\n },\n {\n icon: Clock,\n title: \"Help Desk Support\",\n description: \"Responsive technical support whenever you need it\",\n details: [\n \"24/7 technical support\",\n \"Multiple support channels\",\n \"Rapid response times\",\n \"Dedicated support team\"\n ]\n }\n ],\n stats: [\n {\n icon: Server,\n value: \"99.9%\",\n label: \"Uptime Guarantee\"\n },\n {\n icon: Clock,\n value: \"15min\",\n label: \"Response Time\"\n },\n {\n icon: Shield,\n value: \"24/7\",\n label: \"Monitoring\"\n },\n {\n icon: Users,\n value: \"500+\",\n label: \"Happy Clients\"\n }\n ],\n process: [\n {\n number: 1,\n title: \"Assessment\",\n description: \"Comprehensive evaluation of your current IT infrastructure\"\n },\n {\n number: 2,\n title: \"Planning\",\n description: \"Developing a tailored IT management strategy\"\n },\n {\n number: 3,\n title: \"Implementation\",\n description: \"Seamless deployment of managed services\"\n },\n {\n number: 4,\n title: \"Optimization\",\n description: \"Continuous improvement and adaptation\"\n }\n ],\n pricing: [\n {\n title: \"Essential\",\n price: \"$999/mo\",\n description: \"Perfect for small businesses\",\n features: [\n \"24/7 Monitoring\",\n \"Basic Security Suite\",\n \"Help Desk Support\",\n \"System Updates\"\n ]\n },\n {\n title: \"Professional\",\n price: \"$1,999/mo\",\n description: \"Ideal for growing businesses\",\n features: [\n \"Everything in Essential\",\n \"Advanced Security\",\n \"Priority Support\",\n \"Quarterly Reviews\",\n \"Disaster Recovery\"\n ],\n recommended: true\n },\n {\n title: \"Enterprise\",\n price: \"Custom\",\n description: \"For large organizations\",\n features: [\n \"Everything in Professional\",\n \"Dedicated Support Team\",\n \"Custom Solutions\",\n \"Executive Reporting\",\n \"Strategic Planning\"\n ]\n }\n ],\n testimonials: [\n {\n quote: \"UCX's managed IT services have transformed our operations. Their proactive approach has virtually eliminated our downtime.\",\n author: \"Michael Chen\",\n role: \"CTO\",\n company: \"TechFlow Solutions\"\n },\n {\n quote: \"The level of service and expertise we receive is outstanding. They're not just a provider, they're a true partner.\",\n author: \"Sarah Johnson\",\n role: \"Operations Director\",\n company: \"Global Innovations\"\n },\n {\n quote: \"Switching to UCX was the best decision we made. Our IT infrastructure has never been more reliable.\",\n author: \"David Martinez\",\n role: \"IT Manager\",\n company: \"Premier Manufacturing\"\n }\n ]\n};\n\nexport default function ManagedIT() {\n return ;\n}","import React from 'react';\nimport { Users, Shield, Cog, Brain, CheckCircle, Network, Database, Cloud, PenTool as Tool, Zap, Clock, BarChart as ChartBar, HeartHandshake, Workflow, Settings } from 'lucide-react';\nimport ServicePage from './ServicePage';\n\nconst coManagedITData = {\n title: \"Co-Managed IT Services\",\n description: \"Supercharge your internal IT team with our flexible co-managed IT solutions. Get enterprise-grade support, specialized expertise, and scalable resources exactly when you need them.\",\n features: [\n {\n icon: Users,\n title: \"Strategic Team Augmentation\",\n description: \"Seamlessly extend your IT capabilities with specialized expertise\",\n details: [\n \"Access to certified IT specialists across multiple domains\",\n \"Flexible resource scaling based on project needs\",\n \"Knowledge transfer and team upskilling programs\",\n \"24/7 support coverage for your internal team\",\n \"Custom staffing solutions for specific projects\"\n ]\n },\n {\n icon: Shield,\n title: \"Enterprise-Grade Security\",\n description: \"Strengthen your security posture with advanced protection\",\n details: [\n \"Comprehensive security assessments and gap analysis\",\n \"Advanced threat detection and response\",\n \"Compliance management and documentation\",\n \"Security awareness training programs\",\n \"Incident response planning and support\"\n ]\n },\n {\n icon: Workflow,\n title: \"Process Optimization\",\n description: \"Streamline operations with proven methodologies\",\n details: [\n \"ITIL-aligned process implementation\",\n \"Automated workflow deployment\",\n \"KPI tracking and optimization\",\n \"Service desk enhancement\",\n \"Continuous improvement programs\"\n ]\n },\n {\n icon: Cloud,\n title: \"Technology Modernization\",\n description: \"Transform your infrastructure with cutting-edge solutions\",\n details: [\n \"Cloud migration and optimization\",\n \"Infrastructure modernization\",\n \"Digital transformation initiatives\",\n \"Technology stack optimization\",\n \"Innovation roadmap development\"\n ]\n },\n {\n icon: HeartHandshake,\n title: \"Strategic Partnership\",\n description: \"Align IT with business objectives\",\n details: [\n \"Regular strategy alignment sessions\",\n \"Technology roadmap development\",\n \"Budget optimization consulting\",\n \"Vendor relationship management\",\n \"Executive-level advisory services\"\n ]\n },\n {\n icon: Settings,\n title: \"Operational Excellence\",\n description: \"Enhance IT service delivery and efficiency\",\n details: [\n \"Service level agreement management\",\n \"Performance monitoring and optimization\",\n \"Capacity planning and management\",\n \"Change management support\",\n \"Best practices implementation\"\n ]\n }\n ],\n stats: [\n {\n icon: Users,\n value: \"200+\",\n label: \"IT Teams Empowered\"\n },\n {\n icon: ChartBar,\n value: \"99.9%\",\n label: \"Client Satisfaction\"\n },\n {\n icon: Clock,\n value: \"15min\",\n label: \"Response Time\"\n },\n {\n icon: Brain,\n value: \"15+\",\n label: \"Years Experience\"\n }\n ],\n process: [\n {\n number: 1,\n title: \"Assessment\",\n description: \"Comprehensive evaluation of your current IT capabilities, gaps, and needs\"\n },\n {\n number: 2,\n title: \"Strategy\",\n description: \"Development of a tailored co-managed IT partnership plan\"\n },\n {\n number: 3,\n title: \"Integration\",\n description: \"Seamless onboarding and team integration process\"\n },\n {\n number: 4,\n title: \"Optimization\",\n description: \"Continuous improvement and adaptation of services\"\n }\n ],\n pricing: [\n {\n title: \"Essential Support\",\n price: \"$2,499/mo\",\n description: \"Perfect for small to medium IT teams\",\n features: [\n \"24/7 Help Desk Support\",\n \"Network & Infrastructure Monitoring\",\n \"Security Services & Monitoring\",\n \"Monthly Performance Reports\",\n \"Basic Process Automation\",\n \"Email & Phone Support\"\n ]\n },\n {\n title: \"Professional\",\n price: \"$4,999/mo\",\n description: \"Ideal for growing organizations\",\n features: [\n \"Everything in Essential Support\",\n \"Dedicated Technical Account Manager\",\n \"Advanced Security Services\",\n \"Project Management Support\",\n \"Quarterly Business Reviews\",\n \"Priority Response SLA\",\n \"Training & Documentation\",\n \"Cloud Services Management\"\n ],\n recommended: true\n },\n {\n title: \"Enterprise\",\n price: \"Custom\",\n description: \"Full-scale partnership for large organizations\",\n features: [\n \"Everything in Professional\",\n \"Dedicated Support Team\",\n \"Custom Integration Solutions\",\n \"Executive Advisory Services\",\n \"24/7 Priority Support\",\n \"Compliance Management\",\n \"Innovation Planning\",\n \"Strategic IT Consulting\"\n ]\n }\n ],\n testimonials: [\n {\n quote: \"UCX has transformed our IT operations. Their co-managed services have given us the flexibility to scale our capabilities while maintaining control of our infrastructure. The expertise they bring to the table is invaluable.\",\n author: \"Jennifer Lee\",\n role: \"IT Director\",\n company: \"Enterprise Solutions Inc.\"\n },\n {\n quote: \"The level of support and expertise we receive from UCX is exceptional. They've become an integral part of our IT strategy, helping us navigate complex technology challenges while upskilling our internal team.\",\n author: \"Robert Wilson\",\n role: \"CIO\",\n company: \"Dynamic Systems Corporation\"\n },\n {\n quote: \"Working with UCX has been a game-changer for our IT department. Their co-managed approach gives us the perfect balance of support and autonomy, allowing us to focus on strategic initiatives while knowing our day-to-day operations are in good hands.\",\n author: \"Mark Thompson\",\n role: \"Technical Director\",\n company: \"Innovation Tech Solutions\"\n }\n ]\n};\n\nexport default function CoManagedIT() {\n return ;\n}","import React from 'react';\nimport { Shield, Lock, Eye, Bell, CheckCircle } from 'lucide-react';\nimport ServicePage from './ServicePage';\n\nconst cybersecurityData = {\n title: \"Cybersecurity Services\",\n description: \"Protect your business with enterprise-grade security solutions. Our comprehensive approach ensures your data and systems are secure against modern threats.\",\n features: [\n {\n icon: Shield,\n title: \"Threat Protection\",\n description: \"Advanced security against modern threats\",\n details: [\n \"Next-gen antivirus protection\",\n \"Zero-day threat defense\",\n \"Ransomware protection\",\n \"Email security\"\n ]\n },\n {\n icon: Eye,\n title: \"24/7 Monitoring\",\n description: \"Continuous security monitoring\",\n details: [\n \"Real-time threat detection\",\n \"Security event analysis\",\n \"Incident response\",\n \"Compliance monitoring\"\n ]\n },\n {\n icon: Lock,\n title: \"Access Management\",\n description: \"Secure identity and access control\",\n details: [\n \"Multi-factor authentication\",\n \"Privileged access management\",\n \"Single sign-on (SSO)\",\n \"Identity governance\"\n ]\n }\n ],\n stats: [\n {\n icon: Shield,\n value: \"99.9%\",\n label: \"Threat Detection\"\n },\n {\n icon: Bell,\n value: \"<15min\",\n label: \"Response Time\"\n },\n {\n icon: Eye,\n value: \"24/7\",\n label: \"Monitoring\"\n },\n {\n icon: Lock,\n value: \"100%\",\n label: \"Compliance\"\n }\n ],\n process: [\n {\n number: 1,\n title: \"Assessment\",\n description: \"Security posture evaluation\"\n },\n {\n number: 2,\n title: \"Strategy\",\n description: \"Custom security planning\"\n },\n {\n number: 3,\n title: \"Implementation\",\n description: \"Security solution deployment\"\n },\n {\n number: 4,\n title: \"Monitoring\",\n description: \"Continuous security oversight\"\n }\n ],\n pricing: [\n {\n title: \"Essential Security\",\n price: \"$1,499/mo\",\n description: \"Basic security coverage\",\n features: [\n \"Antivirus Protection\",\n \"Firewall Management\",\n \"Email Security\",\n \"Basic Monitoring\"\n ]\n },\n {\n title: \"Advanced Security\",\n price: \"$2,999/mo\",\n description: \"Comprehensive protection\",\n features: [\n \"Everything in Essential\",\n \"Advanced Threat Protection\",\n \"SIEM Solution\",\n \"Compliance Management\",\n \"Security Training\"\n ],\n recommended: true\n },\n {\n title: \"Enterprise Security\",\n price: \"Custom\",\n description: \"Maximum security posture\",\n features: [\n \"Everything in Advanced\",\n \"Custom Security Solutions\",\n \"24/7 SOC Services\",\n \"Executive Reporting\",\n \"Incident Response Team\"\n ]\n }\n ],\n testimonials: [\n {\n quote: \"UCX's cybersecurity services have given us peace of mind knowing our systems are protected 24/7.\",\n author: \"Amanda Chen\",\n role: \"CISO\",\n company: \"SecureNet Solutions\"\n },\n {\n quote: \"Their proactive approach to security has prevented numerous potential incidents.\",\n author: \"James Wilson\",\n role: \"IT Security Manager\",\n company: \"Global Finance Corp\"\n },\n {\n quote: \"The level of expertise and attention to detail in their security services is outstanding.\",\n author: \"Michael Brown\",\n role: \"CTO\",\n company: \"DataTech Industries\"\n }\n ]\n};\n\nexport default function Cybersecurity() {\n return ;\n}","import React from 'react';\nimport { Briefcase, Server, Cloud, Users, CheckCircle } from 'lucide-react';\nimport ServicePage from './ServicePage';\n\nconst professionalServicesData = {\n title: \"Professional IT Services\",\n description: \"Expert IT solutions for your business transformation needs. From infrastructure design to cloud migration, we deliver results that drive success.\",\n features: [\n {\n icon: Cloud,\n title: \"Cloud Solutions\",\n description: \"Complete cloud transformation services\",\n details: [\n \"Cloud migration strategy\",\n \"Infrastructure optimization\",\n \"Cloud security implementation\",\n \"Performance monitoring\"\n ]\n },\n {\n icon: Server,\n title: \"Infrastructure Design\",\n description: \"Custom infrastructure solutions\",\n details: [\n \"Network architecture\",\n \"System integration\",\n \"Scalability planning\",\n \"Disaster recovery\"\n ]\n },\n {\n icon: Users,\n title: \"Project Management\",\n description: \"Expert IT project delivery\",\n details: [\n \"Project planning\",\n \"Resource allocation\",\n \"Risk management\",\n \"Quality assurance\"\n ]\n }\n ],\n stats: [\n {\n icon: Briefcase,\n value: \"500+\",\n label: \"Projects Completed\"\n },\n {\n icon: Users,\n value: \"98%\",\n label: \"Client Satisfaction\"\n },\n {\n icon: Cloud,\n value: \"100%\",\n label: \"Cloud Success Rate\"\n },\n {\n icon: Server,\n value: \"15+\",\n label: \"Years Experience\"\n }\n ],\n process: [\n {\n number: 1,\n title: \"Discovery\",\n description: \"Understanding your needs\"\n },\n {\n number: 2,\n title: \"Planning\",\n description: \"Detailed solution design\"\n },\n {\n number: 3,\n title: \"Execution\",\n description: \"Expert implementation\"\n },\n {\n number: 4,\n title: \"Support\",\n description: \"Ongoing maintenance\"\n }\n ],\n pricing: [\n {\n title: \"Project-Based\",\n price: \"Custom\",\n description: \"Tailored to project scope\",\n features: [\n \"Dedicated Project Manager\",\n \"Expert Implementation Team\",\n \"Project Documentation\",\n \"Knowledge Transfer\"\n ]\n },\n {\n title: \"Managed Projects\",\n price: \"From $10,000\",\n description: \"End-to-end project management\",\n features: [\n \"Everything in Project-Based\",\n \"Resource Management\",\n \"Risk Mitigation\",\n \"Regular Reporting\",\n \"Quality Assurance\"\n ],\n recommended: true\n },\n {\n title: \"Enterprise\",\n price: \"Custom\",\n description: \"Complex enterprise solutions\",\n features: [\n \"Everything in Managed\",\n \"Enterprise Architecture\",\n \"Program Management\",\n \"Strategic Planning\",\n \"Executive Support\"\n ]\n }\n ],\n testimonials: [\n {\n quote: \"UCX delivered our cloud migration project on time and under budget. Their expertise was invaluable.\",\n author: \"Thomas Anderson\",\n role: \"CIO\",\n company: \"Global Systems Inc\"\n },\n {\n quote: \"Their professional services team showed exceptional skill in handling our complex infrastructure upgrade.\",\n author: \"Lisa Zhang\",\n role: \"IT Director\",\n company: \"Tech Solutions Ltd\"\n },\n {\n quote: \"The level of professionalism and technical expertise exceeded our expectations.\",\n author: \"Richard Moore\",\n role: \"Operations Manager\",\n company: \"Enterprise Corp\"\n }\n ]\n};\n\nexport default function ProfessionalServices() {\n return ;\n}","import React from 'react';\nimport { Brain, Lightbulb, Target, Compass, CheckCircle } from 'lucide-react';\nimport ServicePage from './ServicePage';\n\nconst consultingServicesData = {\n title: \"IT Consulting Services\",\n description: \"Strategic technology consulting to drive your business forward. Our expert consultants help you make informed decisions and achieve your IT objectives.\",\n features: [\n {\n icon: Brain,\n title: \"Strategic Planning\",\n description: \"Long-term technology strategy\",\n details: [\n \"IT roadmap development\",\n \"Digital transformation\",\n \"Technology assessment\",\n \"Innovation planning\"\n ]\n },\n {\n icon: Target,\n title: \"Business Analysis\",\n description: \"Comprehensive IT analysis\",\n details: [\n \"Process optimization\",\n \"Requirements gathering\",\n \"Gap analysis\",\n \"Solution architecture\"\n ]\n },\n {\n icon: Compass,\n title: \"Technology Advisory\",\n description: \"Expert guidance and support\",\n details: [\n \"Technology selection\",\n \"Vendor management\",\n \"Risk assessment\",\n \"Compliance consulting\"\n ]\n }\n ],\n stats: [\n {\n icon: Brain,\n value: \"20+\",\n label: \"Years Experience\"\n },\n {\n icon: Target,\n value: \"300+\",\n label: \"Clients Advised\"\n },\n {\n icon: Lightbulb,\n value: \"95%\",\n label: \"Success Rate\"\n },\n {\n icon: Compass,\n value: \"100%\",\n label: \"Client Retention\"\n }\n ],\n process: [\n {\n number: 1,\n title: \"Assessment\",\n description: \"Current state analysis\"\n },\n {\n number: 2,\n title: \"Strategy\",\n description: \"Solution development\"\n },\n {\n number: 3,\n title: \"Planning\",\n description: \"Implementation roadmap\"\n },\n {\n number: 4,\n title: \"Guidance\",\n description: \"Ongoing advisory support\"\n }\n ],\n pricing: [\n {\n title: \"Advisory\",\n price: \"$250/hr\",\n description: \"Expert consultation\",\n features: [\n \"Technology Assessment\",\n \"Strategic Planning\",\n \"Solution Architecture\",\n \"Best Practices\"\n ]\n },\n {\n title: \"Comprehensive\",\n price: \"From $5,000/mo\",\n description: \"Ongoing strategic support\",\n features: [\n \"Everything in Advisory\",\n \"Regular Strategy Sessions\",\n \"Project Oversight\",\n \"Monthly Reporting\",\n \"Priority Access\"\n ],\n recommended: true\n },\n {\n title: \"Enterprise\",\n price: \"Custom\",\n description: \"Full strategic partnership\",\n features: [\n \"Everything in Comprehensive\",\n \"Dedicated Consultant\",\n \"Executive Advisory\",\n \"Quarterly Reviews\",\n \"Custom Solutions\"\n ]\n }\n ],\n testimonials: [\n {\n quote: \"UCX's consulting services helped us develop a clear technology roadmap that aligned perfectly with our business goals.\",\n author: \"Emily Watson\",\n role: \"CEO\",\n company: \"Innovation Corp\"\n },\n {\n quote: \"Their strategic guidance was instrumental in our digital transformation journey.\",\n author: \"Daniel Kim\",\n role: \"CTO\",\n company: \"Digital Solutions\"\n },\n {\n quote: \"The depth of knowledge and practical advice provided by their consultants is exceptional.\",\n author: \"Sarah Martinez\",\n role: \"Operations Director\",\n company: \"Global Tech\"\n }\n ]\n};\n\nexport default function ConsultingServices() {\n return ;\n}","import React from 'react';\nimport { BrowserRouter as Router, Routes, Route } from 'react-router-dom';\nimport Navbar from './components/Navbar';\nimport Hero from './components/Hero';\nimport Features from './components/Features';\nimport Testimonials from './components/Testimonials';\nimport CTA from './components/CTA';\nimport Footer from './components/Footer';\nimport About from './pages/About';\nimport Leadership from './pages/Leadership';\nimport Contact from './pages/Contact';\nimport Careers from './pages/Careers';\nimport CustomerPortal from './pages/CustomerPortal';\nimport RemoteSupport from './pages/RemoteSupport';\nimport PrivacyPolicy from './pages/legal/PrivacyPolicy';\nimport TermsConditions from './pages/legal/TermsConditions';\nimport CookiePolicy from './pages/legal/CookiePolicy';\n\n// Import service pages directly\nimport ManagedIT from './pages/services/ManagedIT';\nimport CoManagedIT from './pages/services/CoManagedIT';\nimport Cybersecurity from './pages/services/Cybersecurity';\nimport ProfessionalServices from './pages/services/ProfessionalServices';\nimport ConsultingServices from './pages/services/ConsultingServices';\n\nfunction App() {\n return (\n \n
\n \n \n \n \n \n \n \n \n } />\n } />\n } />\n } />\n } />\n } />\n } />\n } />\n } />\n } />\n } />\n } />\n } />\n } />\n } />\n \n
\n
\n
\n );\n}\n\nexport default App;","// CSRF Token Management\nexport const getCSRFToken = (): string => {\n const metaTag = document.querySelector('meta[name=\"csrf-token\"]');\n return metaTag ? metaTag.getAttribute('content') || '' : '';\n};\n\n// XSS Prevention\nexport const sanitizeInput = (input: string): string => {\n const div = document.createElement('div');\n div.textContent = input;\n return div.innerHTML;\n};\n\n// SQL Injection Prevention\nexport const sanitizeSQLInput = (input: string): string => {\n // Remove SQL injection patterns\n return input\n .replace(/[;'\"\\\\]/g, '') // Remove dangerous characters\n .replace(/(\\b(union|select|insert|update|delete|drop|alter)\\b)/gi, ''); // Remove SQL keywords\n};\n\n// Rate Limiting\nclass RateLimiter {\n private requests: Map = new Map();\n private readonly limit: number;\n private readonly windowMs: number;\n\n constructor(limit: number = 100, windowMs: number = 60000) {\n this.limit = limit;\n this.windowMs = windowMs;\n }\n\n isRateLimited(clientId: string): boolean {\n const now = Date.now();\n const windowStart = now - this.windowMs;\n\n // Get existing requests or create new array\n let requestTimestamps = this.requests.get(clientId) || [];\n\n // Filter out old requests\n requestTimestamps = requestTimestamps.filter(timestamp => timestamp > windowStart);\n\n // Check if limit is exceeded\n if (requestTimestamps.length >= this.limit) {\n return true;\n }\n\n // Add new request timestamp\n requestTimestamps.push(now);\n this.requests.set(clientId, requestTimestamps);\n\n return false;\n }\n\n clearOldEntries(): void {\n const now = Date.now();\n const windowStart = now - this.windowMs;\n\n for (const [clientId, timestamps] of this.requests.entries()) {\n const validTimestamps = timestamps.filter(timestamp => timestamp > windowStart);\n if (validTimestamps.length === 0) {\n this.requests.delete(clientId);\n } else {\n this.requests.set(clientId, validTimestamps);\n }\n }\n }\n}\n\n// Brute Force Protection\nclass BruteForceProtection {\n private attempts: Map = new Map();\n private readonly maxAttempts: number;\n private readonly lockoutDuration: number;\n\n constructor(maxAttempts: number = 5, lockoutDuration: number = 900000) { // 15 minutes\n this.maxAttempts = maxAttempts;\n this.lockoutDuration = lockoutDuration;\n }\n\n isBlocked(clientId: string): boolean {\n const attempt = this.attempts.get(clientId);\n if (!attempt) return false;\n\n const now = Date.now();\n if (now - attempt.lastAttempt > this.lockoutDuration) {\n this.attempts.delete(clientId);\n return false;\n }\n\n return attempt.count >= this.maxAttempts;\n }\n\n recordAttempt(clientId: string): void {\n const now = Date.now();\n const attempt = this.attempts.get(clientId);\n\n if (!attempt) {\n this.attempts.set(clientId, { count: 1, lastAttempt: now });\n } else {\n this.attempts.set(clientId, {\n count: attempt.count + 1,\n lastAttempt: now\n });\n }\n }\n\n reset(clientId: string): void {\n this.attempts.delete(clientId);\n }\n}\n\n// Initialize rate limiter and brute force protection\nexport const rateLimiter = new RateLimiter();\nexport const bruteForceProtection = new BruteForceProtection();\n\n// Security Headers Check\nexport const checkSecurityHeaders = (): void => {\n if (process.env.NODE_ENV === 'development') {\n const headers = [\n 'X-Content-Type-Options',\n 'X-Frame-Options',\n 'X-XSS-Protection',\n 'Referrer-Policy',\n 'Content-Security-Policy',\n ];\n\n console.info('Security Headers Check:');\n headers.forEach(header => {\n if (!document.querySelector(`meta[http-equiv=\"${header}\"]`)) {\n console.warn(`Missing security header: ${header}`);\n }\n });\n }\n};\n\n// Enhanced Form Security\nexport const secureFormSubmit = async (formData: FormData, endpoint: string): Promise => {\n const clientId = getClientIdentifier();\n \n // Check rate limiting\n if (rateLimiter.isRateLimited(clientId)) {\n throw new Error('Too many requests. Please try again later.');\n }\n\n // Check brute force protection\n if (bruteForceProtection.isBlocked(clientId)) {\n throw new Error('Account temporarily locked. Please try again later.');\n }\n\n const csrfToken = getCSRFToken();\n \n // Sanitize form data\n const sanitizedData = new FormData();\n for (const [key, value] of formData.entries()) {\n if (typeof value === 'string') {\n // Apply both XSS and SQL injection prevention\n const sanitizedValue = sanitizeSQLInput(sanitizeInput(value));\n sanitizedData.append(key, sanitizedValue);\n } else {\n sanitizedData.append(key, value);\n }\n }\n\n try {\n const response = await fetch(endpoint, {\n method: 'POST',\n headers: {\n 'X-CSRF-Token': csrfToken,\n 'Accept': 'application/json',\n },\n credentials: 'include',\n body: sanitizedData,\n });\n\n if (!response.ok) {\n bruteForceProtection.recordAttempt(clientId);\n throw new Error('Request failed');\n }\n\n return response;\n } catch (error) {\n bruteForceProtection.recordAttempt(clientId);\n throw error;\n }\n};\n\n// Get client identifier (for rate limiting and brute force protection)\nconst getClientIdentifier = (): string => {\n // In a real application, you'd want to use a more sophisticated method\n // This is a simple example using user agent and window properties\n const userAgent = navigator.userAgent;\n const screenResolution = `${window.screen.width}x${window.screen.height}`;\n const timeZone = Intl.DateTimeFormat().resolvedOptions().timeZone;\n \n return btoa(`${userAgent}-${screenResolution}-${timeZone}`);\n};\n\n// Clean up old rate limiting entries periodically\nsetInterval(() => {\n rateLimiter.clearOldEntries();\n}, 60000); // Clean up every minute","import { StrictMode } from 'react';\nimport { createRoot } from 'react-dom/client';\nimport App from './App.tsx';\nimport './index.css';\nimport { checkSecurityHeaders } from './utils/security';\n\n// Check security headers in development\ncheckSecurityHeaders();\n\ncreateRoot(document.getElementById('root')!).render(\n \n \n \n);"],"names":["f","require$$0","k","Symbol","for","l","m","Object","prototype","hasOwnProperty","n","__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED","ReactCurrentOwner","p","key","ref","__self","__source","q","c","a","g","b","d","e","h","call","defaultProps","$$typeof","type","props","_owner","current","reactJsxRuntime_production_min","jsx","jsxs","jsxRuntimeModule","exports","Navbar","isOpen","setIsOpen","useState","activeDropdown","setActiveDropdown","location","useLocation","useEffect","navigation","main","name","href","dropdown","customer","links","external","isActive","path","pathname","className","children","Link","to","onClick","jsxRuntimeExports","src","alt","map","item","items","some","ChevronDown","subItem","link","target","rel","ExternalLink","X","Menu","Hero","consultationSection","document","getElementById","scrollIntoView","behavior","ArrowRight","createRoot","hydrateRoot","StatCard","title","value","SolutionList","index","icon","Features","networkProtection","Lock","ShieldCheck","Mail","Search","Eye","Bell","Shield","leadershipSupport","UserCog","Users","BarChart","UserPlus","ShoppingCart","stat","__spreadValues","Testimonials","id","quote","position","testimonial","Quote","emptyFunction","emptyFunctionWithReset","resetWarningCache","propTypesModule","shim","propName","componentName","propFullName","secret","err","Error","getShim","isRequired","ReactPropTypes","array","bigint","bool","func","number","object","string","symbol","any","arrayOf","element","elementType","instanceOf","node","objectOf","oneOf","oneOfType","shape","exact","checkPropTypes","PropTypes","ownKeys","enumerableOnly","keys","getOwnPropertySymbols","symbols","filter","sym","getOwnPropertyDescriptor","enumerable","push","apply","_objectSpread2","i","arguments","length","source","forEach","_defineProperty","getOwnPropertyDescriptors","defineProperties","defineProperty","_typeof","obj","iterator","constructor","configurable","writable","_slicedToArray","arr","Array","isArray","_arrayWithHoles","_i","_s","_e","_arr","_n","_d","next","done","_iterableToArrayLimit","o","minLen","_arrayLikeToArray","toString","slice","from","test","_unsupportedIterableToArray","TypeError","_nonIterableRest","len","arr2","isUnknownObject","raw","PLAIN_OBJECT_STR","isEqual","left","right","leftArray","leftPlainObject","leftKeys","rightKeys","keySet","allKeys","r","every","extractAllowedOptionsUpdates","options","prevOptions","immutableKeys","reduce","newOptions","isUpdated","includes","ElementsContext","b$1","createContext","displayName","CartElementContext","useElementsContextWithUseCase","useCaseMessage","ctx","useCase","concat","parseElementsContext","React","useContext","useCartElementContextWithUseCase","parseCartElementContext","useAttachEvent","event","cb","cbDefined","cbRef","useRef","decoratedCb","on","off","createElementComponent","isServer","str","charAt","toUpperCase","Element","createElement","_ref","readyCallback","_ref$options","onBlur","onFocus","onReady","onChange","onEscape","onLoadError","onLoaderStart","onNetworksChange","onCheckout","onLineItemClick","onConfirm","onCancel","onShippingAddressChange","onShippingRateChange","elements","_React$useState2","setElement","elementRef","domNode","_useCartElementContex","setCart","setCartState","useLayoutEffect","newElement","create","mount","updates","update","destroy","propTypes","__elementType","window","CardElement","j","L","getOwnPropertyNames","V","t","Promise","s","throw","resolve","then","W","get","Y","SubmissionError","appendExtraData","E","createClient","F","getDefaultClient","U","isSubmissionError","A","dist","K","u","J","G","navigator","webdriver","documentElement","getAttribute","String","replace","indexOf","fromCharCode","O","callPhantom","_phantom","y","this","loadedAt","Date","now","data","S","kind","paymentIntentClientSecret","resubmitKey","formErrors","fieldErrors","Map","field","code","z","message","Q","set","getFormErrors","getFieldErrors","getAllFieldErrors","B","BLOCKED","EMPTY","FILES_TOO_BIG","FORM_NOT_FOUND","INACTIVE","NO_FILE_UPLOADS","PROJECT_NOT_FOUND","TOO_MANY_FILES","Z","REQUIRED_FIELD_EMPTY","REQUIRED_FIELD_MISSING","STRIPE_CLIENT_ERROR","STRIPE_SCA_ERROR","TYPE_EMAIL","TYPE_NUMERIC","TYPE_TEXT","v","charCodeAt","substring","I","JSON","stringify","N","FormData","append","R","project","stripe","session","submitForm","endpoint","Accept","clientName","fetch","method","mode","body","headers","json","M","P","errors","error","_","w","createPaymentMethod","paymentMethod","handleCardAction","delete","paymentIntent","x","T","C","pure","loadParams","V3_URL","V3_URL_REGEX","stripePromise","loadScript","params","reject","Stripe","script","scripts","querySelectorAll","findScript","queryString","advancedFraudSignals","headOrBody","head","appendChild","injectScript","addEventListener","validateLoadParams","errorMessage","loadStripeCalled","loadStripe","_len","args","_key","startTime","maybeStripe","_registerWrapper","version","registerWrapper","initStripe","_a","prefix","__objRest","D","join","setLoadParameters","validatedParams","previousValue","currentValue","_loadParams","client","extraData","onError","onSuccess","origin","getElement","__async","preventDefault","currentTarget","tagName","entries","card","billing_details","H","address","result","submitting","succeeded","CTA","state","handleSubmit","useForm","benefit","CheckCircle","onSubmit","htmlFor","required","placeholder","ValidationError","rows","disabled","Fragment","Footer","socialLinks","Linkedin","label","Twitter","Facebook","footerLinks","solutions","company","support","legal","social","section","Phone","MapPin","About","values","Heart","description","details","HandshakeIcon","Users2","leaders","image","email","linkedin","bio","Leadership","leader","Contact","contactInfo","subValue","style","backgroundImage","backgroundSize","info","MessageSquare","Careers","benefits","DollarSign","Star","Briefcase","portalLinks","url","buttonText","CustomerPortal","portal","RemoteSupport","Clock","Monitor","PrivacyPolicy","TermsConditions","CookiePolicy","ServicePage","features","stats","process","activeFeature","setActiveFeature","scrolled","setScrolled","handleScroll","scrollY","removeEventListener","ArrowDown","feature","onMouseEnter","onMouseLeave","detail","idx","step","managedITData","Server","pricing","price","recommended","testimonials","author","role","ManagedIT","coManagedITData","Workflow","Cloud","HeartHandshake","Settings","ChartBar","Brain","CoManagedIT","cybersecurityData","Cybersecurity","professionalServicesData","ProfessionalServices","consultingServicesData","Target","Compass","Lightbulb","ConsultingServices","App","Router","Routes","Route","rateLimiter","limit","windowMs","requests","isRateLimited","clientId","windowStart","requestTimestamps","timestamp","clearOldEntries","timestamps","validTimestamps","setInterval","render","StrictMode"],"mappings":"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","x_google_ignoreList":[0,1,2,7,8,9,10,11,12,13]}