Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit b7a1cae

Browse files
committedNov 12, 2024·
feat(ui): add ui-components package
1 parent 344da5b commit b7a1cae

File tree

165 files changed

+2320
-1467
lines changed

Some content is hidden

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

165 files changed

+2320
-1467
lines changed
 

‎apps/site/app/[locale]/next-data/og/route.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1+
import HexagonGrid from '@node-core/ui-components/Icons/HexagonGrid';
2+
import JsIconWhite from '@node-core/ui-components/Icons/Logos/JsIconWhite';
13
import { ImageResponse } from 'next/og';
24

3-
import HexagonGrid from '@/components/Icons/HexagonGrid';
4-
import JsIconWhite from '@/components/Icons/Logos/JsIconWhite';
55
import {
66
ENABLE_STATIC_EXPORT,
77
VERCEL_ENV,

‎apps/site/components/Common/Badge.tsx

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import AbstractBadge from '@node-core/ui-components/Common/Badge';
2+
import type { BadgeProps } from '@node-core/ui-components/Common/Badge';
3+
import type { FC } from 'react';
4+
5+
import Link from '@/components/Link';
6+
7+
const Badge: FC<BadgeProps> = props => {
8+
return <AbstractBadge linkComponent={Link} {...props} />;
9+
};
10+
11+
export default Badge;

0 commit comments

Comments
 (0)
Please sign in to comment.