@luxonis/component-lib 1.0.12 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +1 -1
- package/dist/index.d.mts +75 -2
- package/dist/index.d.ts +75 -2
- package/dist/index.js +793 -3
- package/dist/index.mjs +738 -2
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -578,6 +578,7 @@ var DescriptionRecepie = cva5("flex flex-col ", {
|
|
|
578
578
|
center: "items-start sm:items-center",
|
|
579
579
|
allwayscenter: "items-center",
|
|
580
580
|
left: "items-start",
|
|
581
|
+
right: "items-end",
|
|
581
582
|
leftCenterMobile: "items-start sm:items-center",
|
|
582
583
|
desktopCenterMobileLeft: "w-full items-start !text-left sm:items-center sm:!text-center",
|
|
583
584
|
desktopLeftMobileCenter: "w-full items-center !text-center lg:items-start lg:!text-left"
|
|
@@ -619,7 +620,7 @@ var Description = (props) => {
|
|
|
619
620
|
descriptionStyle,
|
|
620
621
|
wrapperClassName
|
|
621
622
|
} = props;
|
|
622
|
-
const alingText = align === "left" || align === "desktopLeftMobileCenter" ? "left" : "center";
|
|
623
|
+
const alingText = align === "left" || align === "desktopLeftMobileCenter" ? "left" : align === "right" ? "right" : "center";
|
|
623
624
|
return /* @__PURE__ */ jsxs5("div", { className: cx7(DescriptionRecepie({ align, gap }), className), children: [
|
|
624
625
|
/* @__PURE__ */ jsxs5("div", { className: cx7(`flex flex-col gap-4 sm:gap-6 w-full`, wrapperClassName ?? "", InnerGap({ innerGap })), children: [
|
|
625
626
|
subTitle && /* @__PURE__ */ jsx9(
|
|
@@ -1544,6 +1545,687 @@ var TabsContent = React15.forwardRef(({ className, ...props }, ref) => /* @__PUR
|
|
|
1544
1545
|
}
|
|
1545
1546
|
));
|
|
1546
1547
|
TabsContent.displayName = TabsPrimitive.Content.displayName;
|
|
1548
|
+
|
|
1549
|
+
// src/ProgressBar.tsx
|
|
1550
|
+
import * as React16 from "react";
|
|
1551
|
+
import * as ProgressPrimitive from "@radix-ui/react-progress";
|
|
1552
|
+
import { cx as cx22 } from "class-variance-authority";
|
|
1553
|
+
import { jsx as jsx26 } from "react/jsx-runtime";
|
|
1554
|
+
var Progress = React16.forwardRef(({ className, value, ...props }, ref) => /* @__PURE__ */ jsx26(
|
|
1555
|
+
ProgressPrimitive.Root,
|
|
1556
|
+
{
|
|
1557
|
+
ref,
|
|
1558
|
+
className: cx22("relative h-2 w-full overflow-hidden rounded-full bg-primary/20", className),
|
|
1559
|
+
...props,
|
|
1560
|
+
children: /* @__PURE__ */ jsx26(
|
|
1561
|
+
ProgressPrimitive.Indicator,
|
|
1562
|
+
{
|
|
1563
|
+
className: "size-full flex-1 bg-primary transition-all",
|
|
1564
|
+
style: { transform: `translateX(-${100 - (value || 0)}%)` }
|
|
1565
|
+
}
|
|
1566
|
+
)
|
|
1567
|
+
}
|
|
1568
|
+
));
|
|
1569
|
+
Progress.displayName = ProgressPrimitive.Root.displayName;
|
|
1570
|
+
|
|
1571
|
+
// src/EdgeSlideshow.tsx
|
|
1572
|
+
import { useEffect as useEffect3, useState as useState6 } from "react";
|
|
1573
|
+
import { useInView } from "react-intersection-observer";
|
|
1574
|
+
import { Fragment as Fragment2, jsx as jsx27, jsxs as jsxs14 } from "react/jsx-runtime";
|
|
1575
|
+
var slides = [
|
|
1576
|
+
"ai-performance",
|
|
1577
|
+
//'stereo-depth',
|
|
1578
|
+
//'video-streaming',
|
|
1579
|
+
"processing-efficiency",
|
|
1580
|
+
"custom-vision"
|
|
1581
|
+
];
|
|
1582
|
+
function getNextSlide(currentSlide) {
|
|
1583
|
+
const currentIndex = slides.indexOf(currentSlide);
|
|
1584
|
+
const nextIndex = (currentIndex + 1) % slides.length;
|
|
1585
|
+
return slides[nextIndex];
|
|
1586
|
+
}
|
|
1587
|
+
function getSlideInfo(slide) {
|
|
1588
|
+
switch (slide) {
|
|
1589
|
+
case "ai-performance":
|
|
1590
|
+
return {
|
|
1591
|
+
title: "AI Performance",
|
|
1592
|
+
imageUrl: "ai-performance.webp",
|
|
1593
|
+
imageAlt: "AI Performance",
|
|
1594
|
+
content: /* @__PURE__ */ jsxs14(Fragment2, { children: [
|
|
1595
|
+
/* @__PURE__ */ jsx27(
|
|
1596
|
+
EdgeSlideshowTextPoint,
|
|
1597
|
+
{
|
|
1598
|
+
title: "48 TOPS INT8 / 12 TOPS FP16:",
|
|
1599
|
+
description: "Handle complex neural models effortlessly, from object detection to segmentation."
|
|
1600
|
+
}
|
|
1601
|
+
),
|
|
1602
|
+
/* @__PURE__ */ jsx27(
|
|
1603
|
+
EdgeSlideshowTextPoint,
|
|
1604
|
+
{
|
|
1605
|
+
title: "Run YOLO, ResNet, MobileNet (90+Models):",
|
|
1606
|
+
description: "Optimized for high throughput and low latency."
|
|
1607
|
+
}
|
|
1608
|
+
),
|
|
1609
|
+
/* @__PURE__ */ jsx27(
|
|
1610
|
+
EdgeSlideshowTextPoint,
|
|
1611
|
+
{
|
|
1612
|
+
title: "Inference Speed:",
|
|
1613
|
+
description: /* @__PURE__ */ jsxs14("article", { className: "flex flex-row flex-wrap items-start gap-2 lg:items-center", children: [
|
|
1614
|
+
/* @__PURE__ */ jsx27(EdgeSlideshowTextPointButton, { text: "YOLOv5m: 280 FPS" }),
|
|
1615
|
+
/* @__PURE__ */ jsx27(EdgeSlideshowTextPointButton, { text: "ResNet-50: 934 FPS" }),
|
|
1616
|
+
/* @__PURE__ */ jsx27(EdgeSlideshowTextPointButton, { text: "BiseNetv1-MBNV2: 647 FPS" })
|
|
1617
|
+
] })
|
|
1618
|
+
}
|
|
1619
|
+
)
|
|
1620
|
+
] })
|
|
1621
|
+
};
|
|
1622
|
+
//case 'stereo-depth':
|
|
1623
|
+
// return {
|
|
1624
|
+
// title: 'Stereo Depth Precision',
|
|
1625
|
+
// imageUrl: 'stereo-depth.webp',
|
|
1626
|
+
// imageAlt: 'Stereo Depth',
|
|
1627
|
+
// content: (
|
|
1628
|
+
// <>
|
|
1629
|
+
// <EdgeSlideshowTextPoint
|
|
1630
|
+
// title="Subpixel Accuracy:"
|
|
1631
|
+
// description="Up to 1/32 subpixel, enabling precise depth maps for real-world applications."
|
|
1632
|
+
// />
|
|
1633
|
+
// <EdgeSlideshowTextPoint
|
|
1634
|
+
// title="High Resolution:"
|
|
1635
|
+
// description="Stereo depth at 720p @ 60 FPS with configurable disparity ranges."
|
|
1636
|
+
// />
|
|
1637
|
+
// <EdgeSlideshowTextPoint
|
|
1638
|
+
// title="Advanced Features:"
|
|
1639
|
+
// description="Confidence mapping, neural network based depth matching, and fine-tuning parameters tailored to any environment."
|
|
1640
|
+
// />
|
|
1641
|
+
// </>
|
|
1642
|
+
// ),
|
|
1643
|
+
// };
|
|
1644
|
+
//case 'video-streaming':
|
|
1645
|
+
// return {
|
|
1646
|
+
// title: 'Video Streaming',
|
|
1647
|
+
// imageUrl: 'video-streaming.webp',
|
|
1648
|
+
// imageAlt: 'Video Streaming',
|
|
1649
|
+
// content: (
|
|
1650
|
+
// <>
|
|
1651
|
+
// <EdgeSlideshowTextPoint
|
|
1652
|
+
// title="Encoding:"
|
|
1653
|
+
// description={<EdgeSlideshowTextPointButton text={'4K @ 120 FPS (H.264/H.265)'} />}
|
|
1654
|
+
// />
|
|
1655
|
+
// <EdgeSlideshowTextPoint
|
|
1656
|
+
// title="Decoding:"
|
|
1657
|
+
// description={<EdgeSlideshowTextPointButton text={'4K @ 240 FPS, with VP9 and AV1 support'} />}
|
|
1658
|
+
// />
|
|
1659
|
+
// <EdgeSlideshowTextPoint
|
|
1660
|
+
// title="ISP:"
|
|
1661
|
+
// description={
|
|
1662
|
+
// <article className="flex flex-row flex-wrap gap-2 items-start lg:items-center">
|
|
1663
|
+
// <EdgeSlideshowTextPointButton text={'5 camera streams'} />
|
|
1664
|
+
// <EdgeSlideshowTextPointButton text={'HDR'} />
|
|
1665
|
+
// <EdgeSlideshowTextPointButton text={'EIS'} />
|
|
1666
|
+
// <EdgeSlideshowTextPointButton text={'3A'} />
|
|
1667
|
+
// <EdgeSlideshowTextPointButton text={'up to 3x 8K @ 30FPS'} />
|
|
1668
|
+
// </article>
|
|
1669
|
+
// }
|
|
1670
|
+
// />
|
|
1671
|
+
// </>
|
|
1672
|
+
// ),
|
|
1673
|
+
// };
|
|
1674
|
+
case "processing-efficiency":
|
|
1675
|
+
return {
|
|
1676
|
+
title: "Processing Efficiency",
|
|
1677
|
+
imageUrl: "processing-efficiency.webp",
|
|
1678
|
+
imageAlt: "Processing Efficiency",
|
|
1679
|
+
content: /* @__PURE__ */ jsxs14(Fragment2, { children: [
|
|
1680
|
+
/* @__PURE__ */ jsx27(
|
|
1681
|
+
EdgeSlideshowTextPoint,
|
|
1682
|
+
{
|
|
1683
|
+
title: "Power Consumption:",
|
|
1684
|
+
description: "Average 10\u201315W, balancing performance and energy efficiency for edge deployments."
|
|
1685
|
+
}
|
|
1686
|
+
),
|
|
1687
|
+
/* @__PURE__ */ jsx27(
|
|
1688
|
+
EdgeSlideshowTextPoint,
|
|
1689
|
+
{
|
|
1690
|
+
title: "Compact Design:",
|
|
1691
|
+
description: "Fully integrated processing in a device that fits in your hand."
|
|
1692
|
+
}
|
|
1693
|
+
)
|
|
1694
|
+
] })
|
|
1695
|
+
};
|
|
1696
|
+
case "custom-vision":
|
|
1697
|
+
return {
|
|
1698
|
+
title: "Custom Vision Engines",
|
|
1699
|
+
imageUrl: "custom-vision.webp",
|
|
1700
|
+
imageAlt: "Custom Vision",
|
|
1701
|
+
content: /* @__PURE__ */ jsxs14(Fragment2, { children: [
|
|
1702
|
+
/* @__PURE__ */ jsx27(
|
|
1703
|
+
EdgeSlideshowTextPoint,
|
|
1704
|
+
{
|
|
1705
|
+
title: "Processing:",
|
|
1706
|
+
description: "Stereo depth, optical flow, and feature detection are processed in parallel on dedicated hardware blocks."
|
|
1707
|
+
}
|
|
1708
|
+
),
|
|
1709
|
+
/* @__PURE__ */ jsx27(
|
|
1710
|
+
EdgeSlideshowTextPoint,
|
|
1711
|
+
{
|
|
1712
|
+
title: "Throughput:",
|
|
1713
|
+
description: /* @__PURE__ */ jsxs14("article", { className: "flex flex-col items-start gap-2", children: [
|
|
1714
|
+
/* @__PURE__ */ jsx27(EdgeSlideshowTextPointButton, { text: "Optical Flow:\nFull-dense at VGA @ 60 FPS" }),
|
|
1715
|
+
/* @__PURE__ */ jsx27(EdgeSlideshowTextPointButton, { text: "Template Matching:\n 1080p with 1.2 ms for 500 templates" })
|
|
1716
|
+
] })
|
|
1717
|
+
}
|
|
1718
|
+
)
|
|
1719
|
+
] })
|
|
1720
|
+
};
|
|
1721
|
+
}
|
|
1722
|
+
}
|
|
1723
|
+
function EdgeSlideshowTextPointButton(props) {
|
|
1724
|
+
return /* @__PURE__ */ jsx27(
|
|
1725
|
+
Button,
|
|
1726
|
+
{
|
|
1727
|
+
variant: "primaryAlt",
|
|
1728
|
+
className: "min-h-fit cursor-default whitespace-pre-line rounded-md !p-4 text-start",
|
|
1729
|
+
animate: false,
|
|
1730
|
+
children: props.text
|
|
1731
|
+
}
|
|
1732
|
+
);
|
|
1733
|
+
}
|
|
1734
|
+
function EdgeSlideshowImage(props) {
|
|
1735
|
+
const { imageAlt, imageUrl } = getSlideInfo(props.activeSlide);
|
|
1736
|
+
return /* @__PURE__ */ jsx27(
|
|
1737
|
+
"img",
|
|
1738
|
+
{
|
|
1739
|
+
src: `/assets/edge-interference/slideshow/${imageUrl}`,
|
|
1740
|
+
alt: imageAlt,
|
|
1741
|
+
className: "size-full max-w-[1/2] rounded-lg object-cover"
|
|
1742
|
+
}
|
|
1743
|
+
);
|
|
1744
|
+
}
|
|
1745
|
+
function EdgeSlideshowHeader() {
|
|
1746
|
+
return /* @__PURE__ */ jsxs14("header", { className: "flex flex-col gap-4", children: [
|
|
1747
|
+
/* @__PURE__ */ jsx27(Text, { text: "The Benchmark for Edge AI", size: "h2", color: "default" }),
|
|
1748
|
+
/* @__PURE__ */ jsx27(
|
|
1749
|
+
Text,
|
|
1750
|
+
{
|
|
1751
|
+
text: "Luxonis devices deliver unparalleled AI performance at the edge, combining neural inference, stereo depth, and real-time vision in one compact package.",
|
|
1752
|
+
size: "lg",
|
|
1753
|
+
color: "default"
|
|
1754
|
+
}
|
|
1755
|
+
)
|
|
1756
|
+
] });
|
|
1757
|
+
}
|
|
1758
|
+
function EdgeSlideshowNav(props) {
|
|
1759
|
+
const { activeSlide, setActiveSlide, autoscrolling, inView } = props;
|
|
1760
|
+
const [progress, setProgress] = useState6(0);
|
|
1761
|
+
useEffect3(() => {
|
|
1762
|
+
let intervalId;
|
|
1763
|
+
const startTime = Date.now();
|
|
1764
|
+
if (autoscrolling && inView) {
|
|
1765
|
+
intervalId = window.setInterval(() => {
|
|
1766
|
+
const elapsed = Date.now() - startTime;
|
|
1767
|
+
const newProgress = Math.min(elapsed / 1e4 * 100, 100);
|
|
1768
|
+
setProgress(newProgress);
|
|
1769
|
+
if (newProgress >= 100) {
|
|
1770
|
+
clearInterval(intervalId);
|
|
1771
|
+
setProgress(0);
|
|
1772
|
+
}
|
|
1773
|
+
}, 100);
|
|
1774
|
+
}
|
|
1775
|
+
return () => {
|
|
1776
|
+
if (intervalId !== void 0) {
|
|
1777
|
+
clearInterval(intervalId);
|
|
1778
|
+
}
|
|
1779
|
+
};
|
|
1780
|
+
}, [autoscrolling, activeSlide, inView]);
|
|
1781
|
+
return /* @__PURE__ */ jsx27("nav", { className: "flex flex-row items-center gap-3", children: slides.map(
|
|
1782
|
+
(slide, index) => autoscrolling && slides.indexOf(slide) === slides.indexOf(activeSlide) ? /* @__PURE__ */ jsx27(
|
|
1783
|
+
Progress,
|
|
1784
|
+
{
|
|
1785
|
+
onClick: () => setActiveSlide(slide),
|
|
1786
|
+
value: progress,
|
|
1787
|
+
max: 100,
|
|
1788
|
+
className: "!h-3 w-16 cursor-pointer select-none"
|
|
1789
|
+
},
|
|
1790
|
+
index
|
|
1791
|
+
) : /* @__PURE__ */ jsx27(
|
|
1792
|
+
Badge,
|
|
1793
|
+
{
|
|
1794
|
+
onClick: () => setActiveSlide(slide),
|
|
1795
|
+
variant: activeSlide === slide ? "default" : "secondary",
|
|
1796
|
+
className: "h-3 w-16 cursor-pointer select-none"
|
|
1797
|
+
},
|
|
1798
|
+
slide
|
|
1799
|
+
)
|
|
1800
|
+
) });
|
|
1801
|
+
}
|
|
1802
|
+
function EdgeSlideshowTextPoint(props) {
|
|
1803
|
+
return /* @__PURE__ */ jsxs14("article", { className: `flex flex-col items-start gap-2`, children: [
|
|
1804
|
+
/* @__PURE__ */ jsx27(Text, { text: props.title, size: "md", color: "default", weight: "bold" }),
|
|
1805
|
+
typeof props.description === "string" ? /* @__PURE__ */ jsx27(Text, { text: props.description, size: "md", color: "default" }) : props.description
|
|
1806
|
+
] });
|
|
1807
|
+
}
|
|
1808
|
+
function EdgeSlideshowText(props) {
|
|
1809
|
+
const { activeSlide, setActiveSlide, autoscrolling, inView } = props;
|
|
1810
|
+
const slideInfo = getSlideInfo(activeSlide);
|
|
1811
|
+
return /* @__PURE__ */ jsxs14("section", { className: "flex size-full flex-col justify-between gap-4", children: [
|
|
1812
|
+
/* @__PURE__ */ jsx27("section", { className: "hidden xl:flex", children: /* @__PURE__ */ jsx27(EdgeSlideshowHeader, {}) }),
|
|
1813
|
+
/* @__PURE__ */ jsxs14("article", { className: "flex flex-col items-start gap-8", children: [
|
|
1814
|
+
/* @__PURE__ */ jsx27(Text, { text: slideInfo.title, size: "h4", color: "primary" }),
|
|
1815
|
+
slideInfo.content,
|
|
1816
|
+
/* @__PURE__ */ jsx27(
|
|
1817
|
+
EdgeSlideshowNav,
|
|
1818
|
+
{
|
|
1819
|
+
activeSlide,
|
|
1820
|
+
autoscrolling,
|
|
1821
|
+
inView,
|
|
1822
|
+
setActiveSlide
|
|
1823
|
+
}
|
|
1824
|
+
)
|
|
1825
|
+
] })
|
|
1826
|
+
] });
|
|
1827
|
+
}
|
|
1828
|
+
function EdgeSlideshow() {
|
|
1829
|
+
const [activeSlide, setActiveSlide] = useState6("ai-performance");
|
|
1830
|
+
const [autoscrolling, setAutoscrolling] = useState6(true);
|
|
1831
|
+
const { ref, inView } = useInView({});
|
|
1832
|
+
useEffect3(() => {
|
|
1833
|
+
let intervalId;
|
|
1834
|
+
if (inView) {
|
|
1835
|
+
intervalId = window.setInterval(() => {
|
|
1836
|
+
setActiveSlide(getNextSlide(activeSlide));
|
|
1837
|
+
setAutoscrolling(true);
|
|
1838
|
+
}, 1e4);
|
|
1839
|
+
}
|
|
1840
|
+
return () => {
|
|
1841
|
+
if (intervalId !== void 0) {
|
|
1842
|
+
clearInterval(intervalId);
|
|
1843
|
+
}
|
|
1844
|
+
};
|
|
1845
|
+
}, [inView, activeSlide, setActiveSlide]);
|
|
1846
|
+
return /* @__PURE__ */ jsxs14("section", { className: "page-card page-padding bg-white", children: [
|
|
1847
|
+
/* @__PURE__ */ jsx27("section", { className: "flex pb-8 xl:hidden", children: /* @__PURE__ */ jsx27(EdgeSlideshowHeader, {}) }),
|
|
1848
|
+
/* @__PURE__ */ jsxs14(
|
|
1849
|
+
"div",
|
|
1850
|
+
{
|
|
1851
|
+
ref,
|
|
1852
|
+
className: "page-card-content grid grid-cols-1 items-center justify-center gap-8 lg:justify-around lg:gap-24 xl:grid-cols-2 ",
|
|
1853
|
+
children: [
|
|
1854
|
+
/* @__PURE__ */ jsx27(EdgeSlideshowImage, { activeSlide }),
|
|
1855
|
+
/* @__PURE__ */ jsx27(
|
|
1856
|
+
EdgeSlideshowText,
|
|
1857
|
+
{
|
|
1858
|
+
inView,
|
|
1859
|
+
activeSlide,
|
|
1860
|
+
setActiveSlide,
|
|
1861
|
+
autoscrolling
|
|
1862
|
+
}
|
|
1863
|
+
)
|
|
1864
|
+
]
|
|
1865
|
+
}
|
|
1866
|
+
)
|
|
1867
|
+
] });
|
|
1868
|
+
}
|
|
1869
|
+
|
|
1870
|
+
// src/StereoDepthCalibration.tsx
|
|
1871
|
+
import { Icon as Icon8 } from "@iconify/react";
|
|
1872
|
+
import { jsx as jsx28, jsxs as jsxs15 } from "react/jsx-runtime";
|
|
1873
|
+
var cards = [
|
|
1874
|
+
{
|
|
1875
|
+
title: "Extreme Precision",
|
|
1876
|
+
text: "Alignment on 42 key metrics ensures unparalleled accuracy across stereo pairs.",
|
|
1877
|
+
icon: "uil:crosshair"
|
|
1878
|
+
},
|
|
1879
|
+
{
|
|
1880
|
+
title: "Wide Lens Compatibility",
|
|
1881
|
+
text: "Accommodates a variety of lenses, including super wide-angle optics.",
|
|
1882
|
+
icon: "mage:lens-fill"
|
|
1883
|
+
},
|
|
1884
|
+
{
|
|
1885
|
+
title: "Temperature Compensation",
|
|
1886
|
+
text: "Calibrated for stability across temperature fluctuations.",
|
|
1887
|
+
icon: "fluent:temperature-16-regular"
|
|
1888
|
+
},
|
|
1889
|
+
{
|
|
1890
|
+
title: "Housing Calibration",
|
|
1891
|
+
text: "Fine-tuned for alignment between the camera and its physical enclosure.",
|
|
1892
|
+
icon: "f7:gear-alt-fill"
|
|
1893
|
+
}
|
|
1894
|
+
];
|
|
1895
|
+
function StereoDepthCalibrationWrapper() {
|
|
1896
|
+
return /* @__PURE__ */ jsxs15("section", { className: "page-card-content relative flex size-full flex-col items-center justify-center gap-8 overflow-hidden rounded-lg bg-black", children: [
|
|
1897
|
+
/* @__PURE__ */ jsx28(
|
|
1898
|
+
"img",
|
|
1899
|
+
{
|
|
1900
|
+
alt: "Stereo Depth Calibration Background Overlay",
|
|
1901
|
+
src: "https://www.luxonis.com/assets/stereo-depth/stereo-depth-calibration-bg.webp",
|
|
1902
|
+
className: "absolute size-full bg-cover bg-center bg-no-repeat object-cover md:h-5/6"
|
|
1903
|
+
}
|
|
1904
|
+
),
|
|
1905
|
+
/* @__PURE__ */ jsx28(StereoDepthCalibrationBody, {})
|
|
1906
|
+
] });
|
|
1907
|
+
}
|
|
1908
|
+
function StereoDepthCalibrationHeader() {
|
|
1909
|
+
return /* @__PURE__ */ jsxs15("header", { className: "flex flex-col items-center justify-center gap-4 pt-6 text-center lg:w-1/2", children: [
|
|
1910
|
+
/* @__PURE__ */ jsx28(Text, { text: "Rail Calibration", size: "md", color: "muted", className: "uppercase" }),
|
|
1911
|
+
/* @__PURE__ */ jsx28(Text, { text: "Starting on the Right Track", size: "h2", color: "white" }),
|
|
1912
|
+
/* @__PURE__ */ jsx28(
|
|
1913
|
+
Text,
|
|
1914
|
+
{
|
|
1915
|
+
text: "Our patent pending rail calibration process guarantees unmatched consistency.",
|
|
1916
|
+
size: "lg",
|
|
1917
|
+
color: "white"
|
|
1918
|
+
}
|
|
1919
|
+
)
|
|
1920
|
+
] });
|
|
1921
|
+
}
|
|
1922
|
+
function StereoDepthCalibrationFooter() {
|
|
1923
|
+
return /* @__PURE__ */ jsxs15("footer", { className: "mt-10 flex flex-col items-start gap-8", children: [
|
|
1924
|
+
/* @__PURE__ */ jsx28(
|
|
1925
|
+
Text,
|
|
1926
|
+
{
|
|
1927
|
+
text: "From lenses to housing, every component is precisely aligned for dependable performance.",
|
|
1928
|
+
size: "h4",
|
|
1929
|
+
color: "white",
|
|
1930
|
+
className: "w-full lg:w-2/5"
|
|
1931
|
+
}
|
|
1932
|
+
),
|
|
1933
|
+
/* @__PURE__ */ jsx28(StereoDepthCalibrationFooterCards, {})
|
|
1934
|
+
] });
|
|
1935
|
+
}
|
|
1936
|
+
function StereoDepthCalibrationFooterCard(props) {
|
|
1937
|
+
return /* @__PURE__ */ jsxs15(FrostedCard, { className: "flex h-full flex-col items-start justify-start gap-2", children: [
|
|
1938
|
+
/* @__PURE__ */ jsx28(Icon8, { icon: props.icon, width: 32, height: 32, className: "card-icon" }),
|
|
1939
|
+
/* @__PURE__ */ jsx28(Text, { text: props.title, size: "lg", color: "white", weight: "semibold" }),
|
|
1940
|
+
/* @__PURE__ */ jsx28(Text, { text: props.text, size: "sm", color: "white" })
|
|
1941
|
+
] });
|
|
1942
|
+
}
|
|
1943
|
+
function StereoDepthCalibrationFooterCards() {
|
|
1944
|
+
return /* @__PURE__ */ jsx28("section", { className: "grid size-full grid-cols-1 items-center justify-center gap-8 md:grid-cols-2 xl:grid-cols-4", children: cards.map((card) => /* @__PURE__ */ jsx28(StereoDepthCalibrationFooterCard, { ...card }, card.title)) });
|
|
1945
|
+
}
|
|
1946
|
+
function StereoDepthCalibrationBody() {
|
|
1947
|
+
return /* @__PURE__ */ jsxs15("section", { className: " z-[1] flex size-full flex-col items-center justify-start overflow-hidden rounded-lg p-4 lg:p-12", children: [
|
|
1948
|
+
/* @__PURE__ */ jsx28(StereoDepthCalibrationHeader, {}),
|
|
1949
|
+
/* @__PURE__ */ jsx28(StereoDepthCalibrationFooter, {})
|
|
1950
|
+
] });
|
|
1951
|
+
}
|
|
1952
|
+
function StereoDepthCalibration() {
|
|
1953
|
+
return /* @__PURE__ */ jsx28("section", { className: "page-card page-padding bg-white", children: /* @__PURE__ */ jsx28(StereoDepthCalibrationWrapper, {}) });
|
|
1954
|
+
}
|
|
1955
|
+
|
|
1956
|
+
// src/Support.tsx
|
|
1957
|
+
import { cx as cx23 } from "class-variance-authority";
|
|
1958
|
+
|
|
1959
|
+
// src/links.ts
|
|
1960
|
+
var github = "https://github.com/luxonis/";
|
|
1961
|
+
var twitter = "https://twitter.com/luxonis";
|
|
1962
|
+
var linkedin = "https://www.linkedin.com/company/luxonis/";
|
|
1963
|
+
var youtube = "https://www.youtube.com/c/Luxonis";
|
|
1964
|
+
var discord = "https://www.luxonis.com/discord";
|
|
1965
|
+
var docs = "https://docs.luxonis.com/en/latest/";
|
|
1966
|
+
var forum = "https://discuss.luxonis.com/";
|
|
1967
|
+
var status = "https://status.luxonis.com/";
|
|
1968
|
+
var store = "https://shop.luxonis.com/";
|
|
1969
|
+
var oakRealsenseDocs = "https://docs.luxonis.com/projects/hardware/en/latest/pages/guides/realsense_comparison.html";
|
|
1970
|
+
var distributorForm = "https://docs.google.com/forms/d/e/1FAIpQLSeVo9QREQxPsIxiHCAfyEgnI2kK88W4r6dUkCTbYfH_R5emAQ/viewform?vc=0&c=0&w=1&flr=0";
|
|
1971
|
+
var kickstarter = "https://www.kickstarter.com/projects/opencv/rae-0";
|
|
1972
|
+
var raeStorepage = "https://shop.luxonis.com/collections/early-access/products/rae";
|
|
1973
|
+
var robothub = "https://hub.luxonis.com/join";
|
|
1974
|
+
var depthaiHardwareProject = "https://github.com/luxonis/depthai-hardware/tree/master/DM1095_OAK-D-LITE-DEV_DepthAI_USB3C";
|
|
1975
|
+
var getStoreSearchLink = (search) => {
|
|
1976
|
+
return `https://shop.luxonis.com/search?q=${search}`;
|
|
1977
|
+
};
|
|
1978
|
+
var supportMail = "mailto:support@luxonis.com";
|
|
1979
|
+
var supportMailClean = "support@luxonis.com";
|
|
1980
|
+
var salesMail = "mailto:orders@luxonis.com";
|
|
1981
|
+
var salesMailClean = "orders@luxonis.com";
|
|
1982
|
+
var applyMail = "mailto:careers@luxonis.com";
|
|
1983
|
+
var applyMailClean = "careers@luxonis.com";
|
|
1984
|
+
var showcaseMail = "mailto:support@luxonis.com";
|
|
1985
|
+
var showcaseMailClean = "support@luxonis.com";
|
|
1986
|
+
var blog = "https://discuss.luxonis.com/blog";
|
|
1987
|
+
var privacy = "/privacy";
|
|
1988
|
+
var termsOfService = "/terms-of-service";
|
|
1989
|
+
var aboutUs = "/about-us";
|
|
1990
|
+
var showcase = "/solutions";
|
|
1991
|
+
var careers = "/careers";
|
|
1992
|
+
var distributors = "/distributors";
|
|
1993
|
+
var marketing = "/marketing";
|
|
1994
|
+
var robothubInternal = "/hub";
|
|
1995
|
+
var certificates = "/certificates";
|
|
1996
|
+
var services = "/services";
|
|
1997
|
+
var bloomberg = "https://www.bloomberg.com/news/articles/2021-03-11/oak-d-device-paves-the-way-for-future-spatial-ai";
|
|
1998
|
+
var forbes = "https://www.forbes.com/sites/gusalexiou/2021/03/24/cutting-edge-intel-ai-powered-backpack-could-replace-a-guide-dog-for-blind-people/?sh=70bb63d01b36";
|
|
1999
|
+
var techcrunch = "https://techcrunch.com/2020/07/14/opencv-ai-kit-aims-to-do-for-computer-vision-what-raspberry-pi-did-for-hobbyist-hardware/";
|
|
2000
|
+
var camerasProducts = "https://shop.luxonis.com/collections/oak-cameras-1";
|
|
2001
|
+
var modulesProducts = "https://shop.luxonis.com/collections/oak-modules";
|
|
2002
|
+
var accessoriesProducts = "https://shop.luxonis.com/collections/accessories";
|
|
2003
|
+
var earlyAccessProducts = "https://shop.luxonis.com/collections/early-access";
|
|
2004
|
+
var supportForm = "https://share-eu1.hsforms.com/1qY1TD1LgRU27qYXxzRyHNgf2chh";
|
|
2005
|
+
var servicesMeetLink = "https://meetings-eu1.hubspot.com/bradley1/luxonis-services-";
|
|
2006
|
+
var replayInstructions = "https://docs-beta.luxonis.com/cloud/perception-apps/robothub-library/replay/";
|
|
2007
|
+
var contactLink = "https://meetings-eu1.hubspot.com/cj-mann/cj-demo";
|
|
2008
|
+
|
|
2009
|
+
// src/TalkToSalesButton.tsx
|
|
2010
|
+
import { jsx as jsx29 } from "react/jsx-runtime";
|
|
2011
|
+
function TalkToSalesButton() {
|
|
2012
|
+
return /* @__PURE__ */ jsx29("a", { href: contactLink, target: "_blank", children: /* @__PURE__ */ jsx29(Button, { variant: "secondary", color: "white", role: "continue", children: "Talk to Sales" }) });
|
|
2013
|
+
}
|
|
2014
|
+
|
|
2015
|
+
// src/ContactUsForm.tsx
|
|
2016
|
+
import { z } from "zod";
|
|
2017
|
+
import React17 from "react";
|
|
2018
|
+
|
|
2019
|
+
// src/useRudderAnalytics.ts
|
|
2020
|
+
import { useEffect as useEffect4, useState as useState7 } from "react";
|
|
2021
|
+
var useRudderStackAnalytics = () => {
|
|
2022
|
+
const [analytics, setAnalytics] = useState7();
|
|
2023
|
+
useEffect4(() => {
|
|
2024
|
+
if (!analytics) {
|
|
2025
|
+
const initialize = async () => {
|
|
2026
|
+
const { RudderAnalytics } = await import("@rudderstack/analytics-js");
|
|
2027
|
+
const analyticsInstance = new RudderAnalytics();
|
|
2028
|
+
if (!process.env.NEXT_PUBLIC_RUDDERSTACK_WRITE_KEY || !process.env.NEXT_PUBLIC_RUDDERSTACK_DATAPLANE) {
|
|
2029
|
+
console.warn("RudderStack not configured");
|
|
2030
|
+
return;
|
|
2031
|
+
}
|
|
2032
|
+
analyticsInstance.load(
|
|
2033
|
+
process.env.NEXT_PUBLIC_RUDDERSTACK_WRITE_KEY,
|
|
2034
|
+
process.env.NEXT_PUBLIC_RUDDERSTACK_DATAPLANE,
|
|
2035
|
+
{
|
|
2036
|
+
storage: { type: "memoryStorage" }
|
|
2037
|
+
}
|
|
2038
|
+
// Disables storage of events in local storage or cookies
|
|
2039
|
+
);
|
|
2040
|
+
window.rudderanalytics = analyticsInstance;
|
|
2041
|
+
setAnalytics(analyticsInstance);
|
|
2042
|
+
};
|
|
2043
|
+
initialize().catch((e) => console.log(e));
|
|
2044
|
+
}
|
|
2045
|
+
}, [analytics]);
|
|
2046
|
+
return analytics;
|
|
2047
|
+
};
|
|
2048
|
+
|
|
2049
|
+
// src/ContactUsForm.tsx
|
|
2050
|
+
import { jsx as jsx30, jsxs as jsxs16 } from "react/jsx-runtime";
|
|
2051
|
+
var formSchema = z.object({
|
|
2052
|
+
name: z.string().min(1),
|
|
2053
|
+
company: z.string().min(1),
|
|
2054
|
+
email: z.string().email(),
|
|
2055
|
+
message: z.string().min(1),
|
|
2056
|
+
inquiry: z.string().min(1)
|
|
2057
|
+
});
|
|
2058
|
+
function ContactUsForm() {
|
|
2059
|
+
const [formSubmitted, setFormSubmitted] = React17.useState(false);
|
|
2060
|
+
const [formHasError, setFormHasError] = React17.useState(false);
|
|
2061
|
+
const [formIsLoading, setFormIsLoading] = React17.useState(false);
|
|
2062
|
+
const analytics = useRudderStackAnalytics();
|
|
2063
|
+
const handleSubmit = (event) => {
|
|
2064
|
+
event.preventDefault();
|
|
2065
|
+
setFormIsLoading(true);
|
|
2066
|
+
const [nameInput, companyInput, emailInput, inquiryInput, messageInput] = [
|
|
2067
|
+
document.getElementById("name"),
|
|
2068
|
+
document.getElementById("company"),
|
|
2069
|
+
document.getElementById("email"),
|
|
2070
|
+
document.getElementById("inquiry"),
|
|
2071
|
+
document.getElementById("message")
|
|
2072
|
+
];
|
|
2073
|
+
const formData = {
|
|
2074
|
+
name: nameInput.value,
|
|
2075
|
+
company: companyInput.value,
|
|
2076
|
+
email: emailInput.value,
|
|
2077
|
+
inquiry: inquiryInput.textContent,
|
|
2078
|
+
message: messageInput.value
|
|
2079
|
+
};
|
|
2080
|
+
setFormHasError(false);
|
|
2081
|
+
const parsedData = formSchema.safeParse(formData);
|
|
2082
|
+
if (parsedData.error || !parsedData.data) {
|
|
2083
|
+
console.warn("Form contains errors!", parsedData.error);
|
|
2084
|
+
setFormHasError(true);
|
|
2085
|
+
setFormIsLoading(false);
|
|
2086
|
+
return;
|
|
2087
|
+
}
|
|
2088
|
+
if (!analytics) {
|
|
2089
|
+
console.warn("Rudder Stack not running");
|
|
2090
|
+
setFormIsLoading(false);
|
|
2091
|
+
return;
|
|
2092
|
+
}
|
|
2093
|
+
analytics.identify(
|
|
2094
|
+
parsedData.data.email,
|
|
2095
|
+
{
|
|
2096
|
+
...parsedData
|
|
2097
|
+
},
|
|
2098
|
+
() => {
|
|
2099
|
+
console.debug("User identified.");
|
|
2100
|
+
}
|
|
2101
|
+
);
|
|
2102
|
+
analytics.track(
|
|
2103
|
+
"Contact Form Submitted",
|
|
2104
|
+
{
|
|
2105
|
+
message: "Message from contact form",
|
|
2106
|
+
reasonForContact: parsedData.data,
|
|
2107
|
+
privacyPolicyAccepted: true,
|
|
2108
|
+
formData
|
|
2109
|
+
},
|
|
2110
|
+
() => {
|
|
2111
|
+
setFormIsLoading(false);
|
|
2112
|
+
console.debug("Form submission event tracked.");
|
|
2113
|
+
}
|
|
2114
|
+
);
|
|
2115
|
+
setFormSubmitted(true);
|
|
2116
|
+
};
|
|
2117
|
+
if (formSubmitted) {
|
|
2118
|
+
return /* @__PURE__ */ jsx30("div", { className: "m-auto flex size-full h-[456px] flex-col items-center justify-center px-4", children: /* @__PURE__ */ jsx30(
|
|
2119
|
+
Text,
|
|
2120
|
+
{
|
|
2121
|
+
size: "h4",
|
|
2122
|
+
text: "Thank you for your message. We will get back to you soon.",
|
|
2123
|
+
color: "white",
|
|
2124
|
+
className: "my-auto text-center"
|
|
2125
|
+
}
|
|
2126
|
+
) });
|
|
2127
|
+
}
|
|
2128
|
+
return /* @__PURE__ */ jsxs16("form", { id: "contact-form-anchor", className: "flex w-full flex-col gap-6 text-white", onSubmit: handleSubmit, children: [
|
|
2129
|
+
/* @__PURE__ */ jsxs16("div", { className: "flex w-full flex-col gap-6 lg:flex-row", children: [
|
|
2130
|
+
/* @__PURE__ */ jsxs16("div", { className: "flex w-full flex-col gap-2", children: [
|
|
2131
|
+
/* @__PURE__ */ jsx30(Label, { className: "font-normal", htmlFor: "name", children: "Name *" }),
|
|
2132
|
+
/* @__PURE__ */ jsx30(Input, { type: "text", id: "name", placeholder: "E.g. Hanna Johns" })
|
|
2133
|
+
] }),
|
|
2134
|
+
/* @__PURE__ */ jsxs16("div", { className: "flex w-full flex-col gap-2", children: [
|
|
2135
|
+
/* @__PURE__ */ jsx30(Label, { className: "font-normal", htmlFor: "Company", children: "Company *" }),
|
|
2136
|
+
/* @__PURE__ */ jsx30(Input, { type: "text", id: "company", placeholder: "E.g. Hanna" })
|
|
2137
|
+
] })
|
|
2138
|
+
] }),
|
|
2139
|
+
/* @__PURE__ */ jsxs16("div", { className: "flex flex-col gap-2", children: [
|
|
2140
|
+
/* @__PURE__ */ jsx30(Label, { className: "font-normal", htmlFor: "email", children: "E-mail *" }),
|
|
2141
|
+
/* @__PURE__ */ jsx30(Input, { type: "email", id: "email", placeholder: "E.g. info@email.com" })
|
|
2142
|
+
] }),
|
|
2143
|
+
/* @__PURE__ */ jsxs16("div", { className: "flex flex-col gap-2", children: [
|
|
2144
|
+
/* @__PURE__ */ jsx30(Label, { className: "font-normal", htmlFor: "inquiry", children: "Type of Inquiry *" }),
|
|
2145
|
+
/* @__PURE__ */ jsxs16(Select, { children: [
|
|
2146
|
+
/* @__PURE__ */ jsx30(SelectTrigger, { className: "h-[48px] bg-white text-black ", children: /* @__PURE__ */ jsx30(SelectValue, { id: "inquiry", placeholder: "Select..." }) }),
|
|
2147
|
+
/* @__PURE__ */ jsxs16(SelectContent, { className: "bg-white", children: [
|
|
2148
|
+
/* @__PURE__ */ jsx30(SelectItem, { value: "Hub assistance", children: "Hub assistance" }),
|
|
2149
|
+
/* @__PURE__ */ jsx30(SelectItem, { value: "hardware-issue", children: "Hardware issue" }),
|
|
2150
|
+
/* @__PURE__ */ jsx30(SelectItem, { value: "support", children: "Support" }),
|
|
2151
|
+
/* @__PURE__ */ jsx30(SelectItem, { value: "training", children: "Training" }),
|
|
2152
|
+
/* @__PURE__ */ jsx30(SelectItem, { value: "other", children: "Other" })
|
|
2153
|
+
] })
|
|
2154
|
+
] })
|
|
2155
|
+
] }),
|
|
2156
|
+
/* @__PURE__ */ jsxs16("div", { className: "flex flex-col gap-2", children: [
|
|
2157
|
+
/* @__PURE__ */ jsx30(Label, { className: "font-normal", htmlFor: "message", children: "Message *" }),
|
|
2158
|
+
/* @__PURE__ */ jsx30(Input, { type: "text", id: "message", placeholder: "Type..." })
|
|
2159
|
+
] }),
|
|
2160
|
+
/* @__PURE__ */ jsxs16("div", { className: "flex flex-row items-center justify-start gap-8", children: [
|
|
2161
|
+
/* @__PURE__ */ jsx30(Button, { type: "submit", variant: "secondary", size: "lg", role: "continue", className: "w-fit", children: formIsLoading ? "Submitting..." : "Submit" }),
|
|
2162
|
+
formHasError && /* @__PURE__ */ jsx30(Text, { text: "Please fill out all fields", color: "error", size: "xl" })
|
|
2163
|
+
] })
|
|
2164
|
+
] });
|
|
2165
|
+
}
|
|
2166
|
+
|
|
2167
|
+
// src/Support.tsx
|
|
2168
|
+
import { jsx as jsx31, jsxs as jsxs17 } from "react/jsx-runtime";
|
|
2169
|
+
var Support = (props) => {
|
|
2170
|
+
const { variant = "fullpage", text } = props;
|
|
2171
|
+
return /* @__PURE__ */ jsx31("div", { className: "page-card page-padding", children: /* @__PURE__ */ jsxs17(
|
|
2172
|
+
Card,
|
|
2173
|
+
{
|
|
2174
|
+
variant,
|
|
2175
|
+
outerStyles: "h-full",
|
|
2176
|
+
className: cx23(
|
|
2177
|
+
"page-card-content mx-auto flex w-full h-full flex-col gap-x-20 gap-y-4 justify-between overflow-hidden bg-gradient-stereo-depth pt-12 xl:p-8 xl:flex-row"
|
|
2178
|
+
),
|
|
2179
|
+
children: [
|
|
2180
|
+
/* @__PURE__ */ jsxs17("div", { className: "flex w-full flex-col items-center gap-8 px-4 text-white xl:w-fit xl:items-start xl:gap-10 xl:px-0", children: [
|
|
2181
|
+
/* @__PURE__ */ jsxs17("div", { className: "flex w-full flex-col items-center gap-4 text-white xl:items-start xl:gap-6", children: [
|
|
2182
|
+
/* @__PURE__ */ jsx31(Text, { size: "h2", text: text ?? "Need More Help?", className: "max-w-[650px] text-center xl:text-left" }),
|
|
2183
|
+
/* @__PURE__ */ jsx31(
|
|
2184
|
+
Text,
|
|
2185
|
+
{
|
|
2186
|
+
size: "lg",
|
|
2187
|
+
text: "Our dedicated team is available for technical support, business solutions, and more. Let us provide the help you need.",
|
|
2188
|
+
className: "w-full max-w-105 text-center xl:text-left"
|
|
2189
|
+
}
|
|
2190
|
+
)
|
|
2191
|
+
] }),
|
|
2192
|
+
/* @__PURE__ */ jsxs17("div", { className: "flex w-fit flex-col gap-4 md:flex-row", children: [
|
|
2193
|
+
/* @__PURE__ */ jsx31(TalkToSalesButton, {}),
|
|
2194
|
+
/* @__PURE__ */ jsx31("a", { href: "https://chat.luxonis.com", target: "_blank", rel: "noreferrer", children: /* @__PURE__ */ jsx31(Button, { size: "lg", variant: "secondary", role: "continue", children: "Get Instant Support" }) })
|
|
2195
|
+
] })
|
|
2196
|
+
] }),
|
|
2197
|
+
/* @__PURE__ */ jsx31("div", { className: "w-full p-4 xl:p-0", children: /* @__PURE__ */ jsx31(FrostedCard, { className: "h-full", children: /* @__PURE__ */ jsx31(ContactUsForm, {}) }) })
|
|
2198
|
+
]
|
|
2199
|
+
}
|
|
2200
|
+
) });
|
|
2201
|
+
};
|
|
2202
|
+
|
|
2203
|
+
// src/ContactUs.tsx
|
|
2204
|
+
import { jsx as jsx32, jsxs as jsxs18 } from "react/jsx-runtime";
|
|
2205
|
+
var ContactUsSection = (props) => {
|
|
2206
|
+
const {
|
|
2207
|
+
title = "Let\u2019s Build \n the Future of \n Vision Together",
|
|
2208
|
+
description = "Our dedicated team is available for technical support, business solutions, and more. Let us provide the help you need."
|
|
2209
|
+
} = props;
|
|
2210
|
+
return /* @__PURE__ */ jsx32("section", { id: "contact-us", className: "page-card page-padding", children: /* @__PURE__ */ jsxs18("section", { className: "page-card-content flex flex-col gap-8 rounded-lg p-4 pt-12 [background:radial-gradient(416.66%_106.71%_at_76.3%_37.11%,#5724E8_0%,#000_100%),#000] md:p-12 lg:flex-row lg:justify-between", children: [
|
|
2211
|
+
/* @__PURE__ */ jsx32(
|
|
2212
|
+
Description,
|
|
2213
|
+
{
|
|
2214
|
+
title,
|
|
2215
|
+
align: "left",
|
|
2216
|
+
textStyle: "max-w-none w-fit lg:max-w-auto lg:justify-start justify-center lg:text-left text-center",
|
|
2217
|
+
wrapperClassName: "lg:items-start items-center lg:text-left text-center flex",
|
|
2218
|
+
description,
|
|
2219
|
+
className: "text-white ",
|
|
2220
|
+
children: /* @__PURE__ */ jsxs18("div", { className: "flex w-full max-w-[500px] flex-col flex-wrap items-center gap-4 lg:flex-row lg:justify-start", children: [
|
|
2221
|
+
/* @__PURE__ */ jsx32("a", { href: "https://hub.luxonis.com", target: "_blank", className: "w-fit", children: /* @__PURE__ */ jsx32(Button, { variant: "secondary", size: "lg", role: "continue", className: "w-full", children: "Start for Free" }) }),
|
|
2222
|
+
/* @__PURE__ */ jsx32(TalkToSalesButton, {})
|
|
2223
|
+
] })
|
|
2224
|
+
}
|
|
2225
|
+
),
|
|
2226
|
+
/* @__PURE__ */ jsx32(FrostedCard, { className: "!p-6", children: /* @__PURE__ */ jsx32(ContactUsForm, {}) })
|
|
2227
|
+
] }) });
|
|
2228
|
+
};
|
|
1547
2229
|
export {
|
|
1548
2230
|
Accordion,
|
|
1549
2231
|
AccordionContent,
|
|
@@ -1560,9 +2242,12 @@ export {
|
|
|
1560
2242
|
ChatButton,
|
|
1561
2243
|
Checkbox,
|
|
1562
2244
|
CodeBlock,
|
|
2245
|
+
ContactUsForm,
|
|
2246
|
+
ContactUsSection,
|
|
1563
2247
|
Copyright,
|
|
1564
2248
|
Description,
|
|
1565
2249
|
DualRangeSlider,
|
|
2250
|
+
EdgeSlideshow,
|
|
1566
2251
|
FrostedCard,
|
|
1567
2252
|
Hero,
|
|
1568
2253
|
HoverCard,
|
|
@@ -1570,6 +2255,7 @@ export {
|
|
|
1570
2255
|
HoverCardTrigger,
|
|
1571
2256
|
Input,
|
|
1572
2257
|
Label,
|
|
2258
|
+
Progress,
|
|
1573
2259
|
SearchBar,
|
|
1574
2260
|
Select,
|
|
1575
2261
|
SelectContent,
|
|
@@ -1581,6 +2267,8 @@ export {
|
|
|
1581
2267
|
SelectSeparator,
|
|
1582
2268
|
SelectTrigger,
|
|
1583
2269
|
SelectValue,
|
|
2270
|
+
StereoDepthCalibration,
|
|
2271
|
+
Support,
|
|
1584
2272
|
Switch,
|
|
1585
2273
|
Table,
|
|
1586
2274
|
TableBody,
|
|
@@ -1594,6 +2282,7 @@ export {
|
|
|
1594
2282
|
TabsContent,
|
|
1595
2283
|
TabsList,
|
|
1596
2284
|
TabsTrigger,
|
|
2285
|
+
TalkToSalesButton,
|
|
1597
2286
|
Text,
|
|
1598
2287
|
Textarea,
|
|
1599
2288
|
Tooltip,
|
|
@@ -1601,7 +2290,54 @@ export {
|
|
|
1601
2290
|
TooltipProvider,
|
|
1602
2291
|
TooltipTrigger,
|
|
1603
2292
|
Video,
|
|
2293
|
+
aboutUs,
|
|
2294
|
+
accessoriesProducts,
|
|
2295
|
+
applyMail,
|
|
2296
|
+
applyMailClean,
|
|
1604
2297
|
badgeVariants,
|
|
2298
|
+
blog,
|
|
2299
|
+
bloomberg,
|
|
1605
2300
|
buttonVariants,
|
|
1606
|
-
|
|
2301
|
+
camerasProducts,
|
|
2302
|
+
careers,
|
|
2303
|
+
certificates,
|
|
2304
|
+
contactLink,
|
|
2305
|
+
depthaiHardwareProject,
|
|
2306
|
+
discord,
|
|
2307
|
+
distributorForm,
|
|
2308
|
+
distributors,
|
|
2309
|
+
docs,
|
|
2310
|
+
earlyAccessProducts,
|
|
2311
|
+
forbes,
|
|
2312
|
+
forum,
|
|
2313
|
+
getStoreSearchLink,
|
|
2314
|
+
github,
|
|
2315
|
+
kickstarter,
|
|
2316
|
+
linkedin,
|
|
2317
|
+
marketing,
|
|
2318
|
+
modulesProducts,
|
|
2319
|
+
oakRealsenseDocs,
|
|
2320
|
+
parseNewLines,
|
|
2321
|
+
privacy,
|
|
2322
|
+
raeStorepage,
|
|
2323
|
+
replayInstructions,
|
|
2324
|
+
robothub,
|
|
2325
|
+
robothubInternal,
|
|
2326
|
+
salesMail,
|
|
2327
|
+
salesMailClean,
|
|
2328
|
+
services,
|
|
2329
|
+
servicesMeetLink,
|
|
2330
|
+
showcase,
|
|
2331
|
+
showcaseMail,
|
|
2332
|
+
showcaseMailClean,
|
|
2333
|
+
status,
|
|
2334
|
+
store,
|
|
2335
|
+
supportForm,
|
|
2336
|
+
supportMail,
|
|
2337
|
+
supportMailClean,
|
|
2338
|
+
techcrunch,
|
|
2339
|
+
termsOfService,
|
|
2340
|
+
twitter,
|
|
2341
|
+
useRudderStackAnalytics,
|
|
2342
|
+
youtube
|
|
1607
2343
|
};
|