blob: c9d46c15c8836b880f1cdf53b72c0156c7ea1873 (
plain) (
blame)
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
|
import Image from "next/image";
import type { ReactNode } from "react";
export function FeatureBox({
name,
description,
iconDark,
iconLight,
}: {
iconDark: Parameters<typeof Image>[0]["src"];
iconLight: Parameters<typeof Image>[0]["src"];
name: string;
description: ReactNode;
}) {
return (
<div className="box-border relative flex flex-col gap-5 p-8 overflow-hidden text-black no-underline border dark:text-white rounded-xl dark:border-neutral-800">
<Image
src={iconDark}
width={64}
height={64}
aria-hidden="true"
alt=""
className="hidden dark:block"
/>
<Image
src={iconLight}
width={64}
height={64}
aria-hidden="true"
alt=""
className="block dark:hidden"
/>
<div className="flex flex-col gap-2">
<h3 className="m-0 font-bold leading-5 text-gray-900 font-space-grotesk dark:text-white">
{name}
</h3>
<p className="m-0 leading-6 opacity-70">{description}</p>
</div>
</div>
);
}
|