-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathtools.tsx
72 lines (69 loc) · 2.27 KB
/
tools.tsx
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
60
61
62
63
64
65
66
67
68
69
70
71
72
"use client";
import React from "react";
const ToolsComponent: React.FC = () => {
return (
<section className="mt-36">
<div className="mx-auto max-w-4xl px-4">
<h1 className="mb-8 text-4xl font-bold">PearAI Tools</h1>
<ul className="space-y-6">
<li>
<h2 className="text-xl font-semibold">PearAI Creator</h2>
</li>
<li>
<h2 className="text-xl font-semibold">PearAI Agent</h2>
<span className="ml-2 text-sm text-gray-500">
(Powered by Roo Code)
</span>
</li>
<li>
<h2 className="text-xl font-semibold">PearAI Chat</h2>
<span className="ml-2 text-sm text-gray-500">
(Powered by Continue)
</span>
</li>
<li>
<h2 className="text-xl font-semibold">PearAI Design</h2>
<span className="ml-2 text-sm text-gray-500">
(Powered by Figma)
</span>
</li>
<li>
<h2 className="text-xl font-semibold">PearAI Login</h2>
<span className="ml-2 text-sm text-gray-500">
(Powered by Supabase)
</span>
</li>
<li>
<h2 className="text-xl font-semibold">PearAI Database</h2>
<span className="ml-2 text-sm text-gray-500">
(Powered by Supabase)
</span>
</li>
<li>
<h2 className="text-xl font-semibold">PearAI Launch</h2>
<span className="ml-2 text-sm text-gray-500">
(Powered by Netlify)
</span>
</li>
<li>
<h2 className="text-xl font-semibold">PearAI Search</h2>
<span className="ml-2 text-sm text-gray-500">
(Powered by Perplexity)
</span>
</li>
<li>
<h2 className="text-xl font-semibold">PearAI Memory</h2>
</li>
<li>
<h2 className="text-xl font-semibold">PearAI Community</h2>
</li>
<li>
<h2 className="text-xl font-semibold">PearAI Language</h2>
</li>
</ul>
<p className="mt-8 text-gray-500">Many more coming soon!</p>
</div>
</section>
);
};
export default ToolsComponent;