Skip to content

Commit d69f385

Browse files
committed
feat: Add menus in PKS site
1 parent a12d152 commit d69f385

1 file changed

Lines changed: 13 additions & 3 deletions

File tree

websites/poolc.org/src/components/my-page/MyPagePKSSection.tsx

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { CopyOutlined, CheckOutlined, ArrowRightOutlined, SettingTwoTone, BookTwoTone } from '@ant-design/icons';
1+
import { CopyOutlined, CheckOutlined, ArrowRightOutlined, SettingTwoTone, BookTwoTone, DeploymentUnitOutlined, EyeTwoTone } from '@ant-design/icons';
22
import { Typography, Space, Button, List } from 'antd';
33
import { createStyles } from 'antd-style';
44
import useCopy from '../../hooks/useCopy';
@@ -14,14 +14,24 @@ export default function MyPagePKSSection({ jwtToken }: { jwtToken: string }) {
1414
}[] = [
1515
{
1616
title: 'kubectl 빠른 설정',
17-
icon: <SettingTwoTone size={24} twoToneColor="#4dabf7" />,
17+
icon: <SettingTwoTone size={24} twoToneColor="#adb5bd" />,
1818
link: 'https://github.com/PoolC/PKS-docs/tree/main/docs/user-guides',
1919
},
2020
{
2121
title: '전체 문서',
22-
icon: <BookTwoTone size={24} twoToneColor="#4dabf7" />,
22+
icon: <BookTwoTone size={24} twoToneColor="#ffa94d" />,
2323
link: 'https://github.com/PoolC/PKS-docs/tree/main',
2424
},
25+
{
26+
title: 'Argo CD',
27+
icon: <DeploymentUnitOutlined size={24} />,
28+
link: 'https://argocd.dev.poolc.org',
29+
},
30+
{
31+
title: '모니터링',
32+
icon: <EyeTwoTone size={24} twoToneColor="#4dabf7" />,
33+
link: 'https://mon.dev.poolc.org',
34+
},
2535
];
2636

2737
const code = dedent`kubectl config set-credentials pks --token=${jwtToken}

0 commit comments

Comments
 (0)