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
57
58
59
|
export const features = [
{
title: "For Researchers",
description:
"Add content to collections and use it as a knowledge base for your research, link multiple sources together to get a better understanding of the topic.",
svg: <ResearchSvg />,
},
{
title: "For Content writers",
description:
"Save time and use the writing assistant to generate content based on your own saved collections and sources.",
svg: <ContentSvg />,
},
{
title: "For Developers",
description:
"Talk to documentation websites, code snippets, etc. so you never have to google the same thing a hundred times.",
svg: <DeveloperSvg />,
},
];
function ResearchSvg() {
return (
<svg
className="mr-3 shrink-0 fill-zinc-400"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
>
<path d="m7.951 14.537 6.296-7.196 1.506 1.318-7.704 8.804-3.756-3.756 1.414-1.414 2.244 2.244Zm11.296-7.196 1.506 1.318-7.704 8.804-1.756-1.756 1.414-1.414.244.244 6.296-7.196Z" />
</svg>
);
}
function ContentSvg() {
return (
<svg
className="mr-3 shrink-0 fill-zinc-400"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
>
<path d="m16.997 19.056-1.78-.912A13.91 13.91 0 0 0 16.75 11.8c0-2.206-.526-4.38-1.533-6.344l1.78-.912A15.91 15.91 0 0 1 18.75 11.8c0 2.524-.602 5.01-1.753 7.256Zm-3.616-1.701-1.77-.93A9.944 9.944 0 0 0 12.75 11.8c0-1.611-.39-3.199-1.14-4.625l1.771-.93c.9 1.714 1.37 3.62 1.369 5.555 0 1.935-.47 3.841-1.369 5.555Zm-3.626-1.693-1.75-.968c.49-.885.746-1.881.745-2.895a5.97 5.97 0 0 0-.745-2.893l1.75-.968a7.968 7.968 0 0 1 .995 3.861 7.97 7.97 0 0 1-.995 3.863Zm-3.673-1.65-1.664-1.11c.217-.325.333-.709.332-1.103 0-.392-.115-.776-.332-1.102L6.082 9.59c.437.655.67 1.425.668 2.21a3.981 3.981 0 0 1-.668 2.212Z" />
</svg>
);
}
function DeveloperSvg() {
return (
<svg
className="mr-3 shrink-0 fill-zinc-400"
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
>
<path d="m11.293 5.293 1.414 1.414-8 8-1.414-1.414 8-8Zm7-1 1.414 1.414-8 8-1.414-1.414 8-8Zm0 6 1.414 1.414-8 8-1.414-1.414 8-8Z" />
</svg>
);
}
|