Skip to content

Commit feb24a6

Browse files
committed
fix: add customers
1 parent 13b4bee commit feb24a6

File tree

8 files changed

+101
-9
lines changed

8 files changed

+101
-9
lines changed

src/app/[locale]/customers.tsx

Lines changed: 32 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ import Image from "next/image";
55

66
import boncloud from "@/assets/customers/boncloud.svg";
77
import ecloud from "@/assets/customers/ecloud.svg";
8+
import ctyun from "@/assets/customers/ctyun.svg";
9+
import tilaa from '@/assets/customers/tilaa.svg'
10+
import pingan from "@/assets/customers/pingan.svg"
811
import kuaishou from "@/assets/customers/kuaishou.svg";
12+
import fastgpt from "@/assets/customers/fastgpt.svg";
13+
import kubesphere from "@/assets/customers/kubesphere.svg";
914
import logo360 from "@/assets/customers/logo360.svg";
1015
import momenta from "@/assets/customers/momenta.svg";
1116
import sealos from "@/assets/customers/sealos.svg";
@@ -21,15 +26,31 @@ import { KeyboardArrowLeft, KeyboardArrowRight } from "@mui/icons-material";
2126
const customers = [
2227
{
2328
img: boncloud,
24-
title: "东方国信云",
29+
title: "BONC Cloud",
2530
},
2631
{
2732
img: ecloud,
28-
title: "移动云",
33+
title: "China Mobile Cloud",
34+
},
35+
{
36+
img: ctyun,
37+
title: 'China Telecom Cloud',
38+
},
39+
{
40+
img: tilaa,
41+
title: 'Tilaa',
42+
},
43+
{
44+
img: pingan,
45+
title: 'Ping An',
46+
},
47+
{
48+
img: kubesphere,
49+
title: 'KubeSphere',
2950
},
3051
{
3152
img: kuaishou,
32-
title: "快手",
53+
title: "Kwai",
3354
},
3455
{
3556
img: logo360,
@@ -43,25 +64,29 @@ const customers = [
4364
img: sealos,
4465
title: "SealOS",
4566
},
67+
{
68+
img: fastgpt,
69+
title: "FastGPT",
70+
},
4671
{
4772
img: tencent,
4873
title: "Tencent",
4974
},
5075
{
5176
img: weipinhui,
52-
title: "唯品会",
77+
title: "VIP.com",
5378
},
5479
{
5580
img: xiaomi,
56-
title: "小米",
81+
title: "Xiaomi",
5782
},
5883
{
5984
img: zhongxinzhengquan,
60-
title: "中信证券",
85+
title: "CITIC",
6186
},
6287
{
6388
img: tigerbrokers,
64-
title: "老虎证券",
89+
title: "Tiger Brokers",
6590
},
6691
];
6792

src/assets/customers/ctyun.svg

Lines changed: 1 addition & 0 deletions
Loading

src/assets/customers/fastgpt.svg

Lines changed: 39 additions & 0 deletions
Loading
Lines changed: 1 addition & 0 deletions
Loading

src/assets/customers/pingan.svg

Lines changed: 1 addition & 0 deletions
Loading

src/assets/customers/tigerbrokers.svg

Lines changed: 1 addition & 1 deletion
Loading

src/assets/customers/tilaa.svg

Lines changed: 23 additions & 0 deletions
Loading

src/components/CodeWithCopyButton.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ export default function CodeWithCopyButton(
3030
}
3131
};
3232

33-
if(navigator.clipboard === undefined) return;
33+
if(navigator.clipboard === undefined) {
34+
return props.children
35+
};
3436

3537
return (
3638
<StyledCode {...props} ref={ref}>

0 commit comments

Comments
 (0)