Skip to content

Commit 2116a87

Browse files
committed
feat(data): localize names and avatars
1 parent 1b55f6c commit 2116a87

31 files changed

+251
-250
lines changed
Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
'use client'
22

33
import { cn } from "@/lib/utils";
4-
import { ScanSearchIcon } from "lucide-react";
4+
import { Play } from "lucide-react";
55
export default function DemoLink({ className }: {
66
className?: string | string[]
7-
}) {return (
7+
}) {
8+
return (
89
<a href="https://play.rustfs.com" className={cn('group inline-flex items-center justify-center rounded-full py-3 px-6 text-sm font-semibold focus-visible:outline-2 focus-visible:outline-offset-2 bg-secondary text-secondary-foreground hover:bg-secondary/90 hover:text-secondary-foreground/90 active:bg-secondary/80 active:text-secondary-foreground/80 focus-visible:outline-secondary transition-colors', className)}>
910
<span className="mr-2">{'View Demo'}</span>
10-
<ScanSearchIcon className="h-3 w-3 flex-none" strokeWidth={2.5} />
11+
<Play className="h-3 w-3 flex-none" strokeWidth={2.5} />
1112
</a>
1213
)
1314
}

components/business/home-differents.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ export default function HomeDifferents() {return (
8686
</div>
8787
<div className="flex items-center gap-2 p-4 lg:px-8 ">
8888
<CheckIcon className="text-green-500" />
89-
<span>{'Full S3 support for Chinese clouds'}</span>
89+
<span>{'Full S3 support for global clouds'}</span>
9090
</div>
9191
<div className="flex items-center gap-2 bg-neutral-100 p-4 lg:px-8 dark:bg-neutral-900">
9292
<CheckIcon className="text-green-500" />

0 commit comments

Comments
 (0)