Skip to content

Commit 4264b64

Browse files
authored
update the products list (#1857)
1 parent b5b6cd1 commit 4264b64

55 files changed

Lines changed: 1264 additions & 599 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

pnpm-lock.yaml

Lines changed: 225 additions & 587 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import { clsx } from 'clsx';
2+
import { twMerge } from 'tailwind-merge';
3+
4+
export const cn: typeof clsx = (...args) => {
5+
return twMerge(clsx(args));
6+
};
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import 'react';
2+
import 'nextra/icons';
3+
4+
export { ReactComponent } from '../../logos/angular.mjs';
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import { jsx, jsxs } from 'react/jsx-runtime';
2+
3+
const SvgCodegen = props =>
4+
/* @__PURE__ */ jsxs('svg', {
5+
width: 53,
6+
height: 53,
7+
viewBox: '0 0 53 53',
8+
fill: 'currentColor',
9+
...props,
10+
children: [
11+
/* @__PURE__ */ jsx('path', {
12+
d: 'm42.212 16.24-5.427-5.427-7.46 7.46a3.997 3.997 0 0 1-5.652 0l-7.46-7.46-5.428 5.427 7.46 7.46a3.997 3.997 0 0 1 0 5.653l-7.46 7.46 5.427 5.427 7.46-7.46a3.997 3.997 0 0 1 5.653 0l7.46 7.46 5.428-5.427-7.46-7.46a3.997 3.997 0 0 1 0-5.653l7.46-7.46Z',
13+
}),
14+
/* @__PURE__ */ jsx('path', {
15+
d: 'M26.498 41.672 21.072 47.1l5.427 5.426 5.426-5.426-5.427-5.427ZM26.499.525 21.073 5.95l5.426 5.426 5.426-5.426L26.5.525ZM47.074 21.101l-5.426 5.427 5.426 5.426 5.426-5.426-5.426-5.427ZM5.926 21.1.5 26.528l5.426 5.426 5.426-5.426-5.426-5.426Z',
16+
}),
17+
],
18+
});
19+
export { SvgCodegen as ReactComponent };
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import 'react';
2+
import 'nextra/icons';
3+
4+
export { ReactComponent } from '../../logos/angular.mjs';
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
import { jsx, jsxs } from 'react/jsx-runtime';
2+
3+
const SvgHiveGateway = props =>
4+
/* @__PURE__ */ jsxs('svg', {
5+
width: 52,
6+
height: 53,
7+
viewBox: '0 0 52 53',
8+
fill: 'currentColor',
9+
...props,
10+
children: [
11+
/* @__PURE__ */ jsxs('defs', {
12+
children: [
13+
/* @__PURE__ */ jsx('path', {
14+
id: 'hive-gateway-path',
15+
d: 'm25 .524872-7.7758.000001V13.6981c0 2.2382-1.8128 4.051-4.0509 4.051H0l7.2e-7 7.7758H8.48411c1.06096 0 2.07849-.4215 2.82859-1.1718l12.5159-12.5176C24.5786 11.0854 25 10.068 25 9.00727V.524872Zm2 0 7.7758.000001V13.6981c0 2.2382 1.8128 4.051 4.0509 4.051H52v7.7758h-8.4841c-1.061 0-2.0785-.4215-2.8286-1.1718L28.1714 11.8355C27.4214 11.0854 27 10.068 27 9.00727V.524872ZM25 52.5249h-7.7758V39.3516c0-2.2381-1.8128-4.0509-4.0509-4.0509H0l7.2e-7-7.7758H8.48411c1.06096 0 2.07849.4215 2.82859 1.1717l12.5159 12.5176c.75.7502 1.1714 1.7675 1.1714 2.8283v8.4824Zm2 0h7.7758V39.3516c0-2.2381 1.8128-4.0509 4.0509-4.0509H52v-7.7758h-8.4841c-1.061 0-2.0785.4215-2.8286 1.1717L28.1714 41.2142c-.75.7502-1.1714 1.7675-1.1714 2.8283v8.4824Zm2.8369-29.837H22.163v7.6739h7.6739v-7.6739Z',
16+
}),
17+
/* @__PURE__ */ jsx('clipPath', {
18+
id: 'hive-gateway-clip-path',
19+
children: /* @__PURE__ */ jsx('use', { href: '#hive-gateway-path' }),
20+
}),
21+
],
22+
}),
23+
/* @__PURE__ */ jsx('use', {
24+
href: '#hive-gateway-path',
25+
clipPath: 'url(#hive-gateway-clip-path)',
26+
}),
27+
],
28+
});
29+
export { SvgHiveGateway as ReactComponent };
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import 'react';
2+
import 'nextra/icons';
3+
4+
export { ReactComponent } from '../../logos/angular.mjs';
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import { jsx } from 'react/jsx-runtime';
2+
3+
const SvgHiveRouter = props =>
4+
/* @__PURE__ */ jsx('svg', {
5+
width: 48,
6+
height: 48,
7+
viewBox: '0 0 48 48',
8+
fill: 'currentColor',
9+
...props,
10+
children: /* @__PURE__ */ jsx('path', {
11+
d: 'M41.7695 8.98828L48 15.2188V34.8838L34.8848 48H15.2197L8.98828 41.7676L8.41406 41.1367H37.5615C39.5368 41.1366 41.1366 39.5368 41.1367 37.5615V8.41406L41.7695 8.98828ZM39.0117 6.23242L39.5859 6.86328H10.4385C8.46325 6.86343 6.86343 8.46325 6.86328 10.4385V39.5859L6.23047 39.0117L0 32.7812V13.1162L13.1152 0H32.7803L39.0117 6.23242ZM17.2676 12.2441H26.7217L36.3291 21.8535V28.6875L36.335 31.3066V36.335H21.8477L12.2393 26.7266V12.2393H17.2676V12.2441ZM19.8867 17.2715C18.4398 17.2716 17.2676 18.4446 17.2676 19.8916V28.6875C17.2676 30.1345 18.4398 31.3065 19.8867 31.3066H28.6826C30.1297 31.3066 31.3018 30.1346 31.3018 28.6875V19.8916C31.3018 18.4445 30.1297 17.2715 28.6826 17.2715H19.8867Z',
12+
}),
13+
});
14+
export { SvgHiveRouter as ReactComponent };
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
import 'react';
2+
import 'nextra/icons';
3+
4+
export { ReactComponent } from '../../logos/angular.mjs';
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
import { jsx, jsxs } from 'react/jsx-runtime';
2+
3+
const SvgHive = props =>
4+
/* @__PURE__ */ jsxs('svg', {
5+
width: 52,
6+
height: 52,
7+
viewBox: '0 0 52 52',
8+
fill: 'none',
9+
...props,
10+
children: [
11+
/* @__PURE__ */ jsxs('g', {
12+
clipPath: 'url(#hive-icon)',
13+
fill: 'currentColor',
14+
children: [
15+
/* @__PURE__ */ jsx('path', {
16+
d: 'M36.902.081H16.097L.5 15.678v20.806L16.097 52.08h20.805L52.5 36.484V15.678L36.902.081ZM49.18 28.918 29.334 48.762a4.01 4.01 0 0 1-5.67 0L3.82 28.918a4.01 4.01 0 0 1 0-5.671L23.663 3.402a4.01 4.01 0 0 1 5.671 0L49.18 23.247a4.01 4.01 0 0 1 0 5.67Z',
17+
}),
18+
/* @__PURE__ */ jsx('path', {
19+
d: 'm26.499 20.637-5.444 5.443 5.444 5.444 5.443-5.444-5.443-5.443Z',
20+
}),
21+
],
22+
}),
23+
/* @__PURE__ */ jsx('defs', {
24+
children: /* @__PURE__ */ jsx('clipPath', {
25+
id: 'hive-icon',
26+
children: /* @__PURE__ */ jsx('path', { fill: '#fff', d: 'M0 0h52v52H0z' }),
27+
}),
28+
}),
29+
],
30+
});
31+
export { SvgHive as ReactComponent };

0 commit comments

Comments
 (0)