-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathclients.tsx
More file actions
56 lines (50 loc) · 3.2 KB
/
clients.tsx
File metadata and controls
56 lines (50 loc) · 3.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import { ChevronRightIcon } from "lucide-react";
export default function Clients() {
return (
<>
{/* Clients */}
<div className="mx-auto max-w-[85rem] px-4 py-12 sm:px-6 lg:px-8 lg:py-20">
{/* Title */}
{/* Title */}
<div className="mx-auto mb-10 max-w-2xl text-center lg:mb-14">
<h2 className="text-2xl font-bold md:text-4xl md:leading-tight dark:text-white">
值得信赖的开源软件<br /><span className="text-blue-500">超过 1,500+款软件协议兼容适配</span>
</h2>
<p className="mt-4 text-gray-600 dark:text-neutral-400">
{/* 超过 1,000+款开源软件适配 */}
</p>
</div>
{/* End Title */}
{/* Grid */}
<div className="grid grid-cols-3 gap-x-6 md:grid-cols-6">
<img src="/images/inter/TensorFlow.svg" className="mx-auto h-auto w-16 py-3 text-gray-500 md:w-20 lg:w-24 lg:py-5 dark:text-neutral-500" />
<img src="/images/inter/docker.svg" className="mx-auto h-auto w-16 py-3 text-gray-500 md:w-20 lg:w-24 lg:py-5 dark:text-neutral-500" />
<img src="/images/inter/elastic.svg" className="mx-auto h-auto w-16 py-3 text-gray-500 md:w-20 lg:w-24 lg:py-5 dark:text-neutral-500" />
<img src="/images/inter/grafana.svg" className="mx-auto h-auto w-16 py-3 text-gray-500 md:w-20 lg:w-24 lg:py-5 dark:text-neutral-500" />
<img src="/images/inter/kafka.svg" className="mx-auto h-auto w-16 py-3 text-gray-500 md:w-20 lg:w-24 lg:py-5 dark:text-neutral-500" />
<img src="/images/inter/MySQL.svg" className="mx-auto h-auto w-16 py-3 text-gray-500 md:w-20 lg:w-24 lg:py-5 dark:text-neutral-500" />
</div>
{/* End Grid */}
{/* Grid */}
<div className="grid grid-cols-3 gap-x-6 sm:gap-x-6 md:grid-cols-5">
<img src="/images/inter/NGINX.svg" className="mx-auto h-auto w-16 py-3 text-gray-500 md:w-20 lg:w-24 lg:py-5 dark:text-neutral-500" />
<img src="/images/inter/PostgreSQL.svg" className="mx-auto h-auto w-16 py-3 text-gray-500 md:w-20 lg:w-24 lg:py-5 dark:text-neutral-500" />
<img src="/images/inter/spark.svg" className="mx-auto h-auto w-16 py-3 text-gray-500 md:w-20 lg:w-24 lg:py-5 dark:text-neutral-500" />
<img src="/images/inter/prometheus.svg" className="mx-auto h-auto w-16 py-3 text-gray-500 md:w-20 lg:w-24 lg:py-5 dark:text-neutral-500" />
<img src="/images/inter/webhooks.svg" className="mx-auto h-auto w-16 py-3 text-gray-500 md:w-20 lg:w-24 lg:py-5 dark:text-neutral-500" />
</div>
{/* End Grid */}
<div className="mt-8 text-center">
<a
className="inline-flex items-center gap-x-2 rounded-full border border-gray-200 bg-white px-4 py-3 text-sm font-medium text-gray-800 shadow-sm hover:bg-gray-50 focus:bg-gray-50 focus:outline-none disabled:pointer-events-none disabled:opacity-50 dark:border-neutral-700 dark:bg-neutral-900 dark:text-white dark:hover:bg-neutral-800 dark:focus:bg-neutral-800"
href="/features/integration"
>
了解更多集成产品
<ChevronRightIcon />
</a>
</div>
</div>
{/* End Clients */}
</>
)
}