forked from LAION-AI/Open-Assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRoadmap.tsx
78 lines (76 loc) · 3.59 KB
/
Roadmap.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
73
74
75
76
77
78
import { Container } from "./Container";
const Roadmap = () => {
return (
<Container className="">
<div className="py-32">
<h2 className="text-4xl mb-16">Our Roadmap</h2>
<div className="flex flex-col items-center space-y-8 md:space-y-0 md:items-start md:flex-row md:justify-between">
<div className="flex flex-col items-center space-y-4">
<div className="h-[5rem] w-[5rem] border-4 border-[#a72a1e] rounded-full flex items-center justify-center">
<p className="font-bold text-[#a72a1e] text-center">ASAP</p>
</div>
<h4 className="font-bold text-xl text-[#a72a1e] text-center max-w-[10rem]">Minimum Viable Prototype</h4>
<ul className="ml-6 md:ml-8 lg:ml-6 space-y-4 text-[#a72a1e] list-disc">
<li>Data Collection Pipeline</li>
<li>RL on Human Feedback</li>
<li>Assistant v1 usable</li>
<li>Out January 2023!</li>
</ul>
</div>
<div>
<span className="w-[4vw] h-[4px] mt-8 bg-[#a72a1e] rounded-full hidden md:block" />
</div>
<span className="w-[4px] h-16 bg-[#a72a1e] rounded-full block md:hidden" />
<div className="flex flex-col items-center space-y-4">
<div className="h-[5rem] w-[5rem] border-4 border-[#858585] rounded-full flex items-center justify-center">
<p className="font-bold text-[#858585] text-center">
Q1
<br />
2023
</p>
</div>
<h4 className="font-bold text-xl text-[#858585] text-center max-w-[10rem]">Growing Up</h4>
<ul className="ml-6 md:ml-8 lg:ml-6 space-y-4 text-[#858585] list-disc">
<li>Retrieval Augmentation</li>
<li>Rapid Personalization</li>
<li>Using External Tools</li>
</ul>
</div>
<div>
<span className="w-[4vw] h-[4px] mt-8 bg-[#858585] rounded-full hidden md:block" />
</div>
<span className="w-[4px] h-16 bg-[#858585] rounded-full block md:hidden" />
<div className="flex flex-col items-center space-y-4">
<div className="h-[5rem] w-[5rem] border-4 border-[#858585] rounded-full flex items-center justify-center">
<p className="font-bold text-[#858585] text-center">
Q2
<br />
2023
</p>
</div>
<h4 className="font-bold text-xl text-[#858585] text-center max-w-[10rem]">Growing Up</h4>
<ul className="ml-6 md:ml-8 lg:ml-6 space-y-4 text-[#858585] list-disc">
<li>Third-Party Extensions</li>
<li>Device Control</li>
<li>Multi-Modality</li>
</ul>
</div>
<div>
<span className="w-[4vw] h-[4px] mt-8 bg-[#858585] rounded-full hidden md:block" />
</div>
<span className="w-[4px] h-16 bg-[#858585] rounded-full block md:hidden" />
<div className="flex flex-col items-center space-y-4">
<div className="h-[5rem] w-[5rem] border-4 border-[#858585] rounded-full flex items-center justify-center">
<p className="font-bold text-[#858585] text-center">...</p>
</div>
<h4 className="font-bold text-xl text-[#858585] text-center max-w-[10rem]">Growing Up</h4>
<ul className="ml-6 md:ml-8 lg:ml-6 space-y-4 text-[#858585] list-disc">
<li>What do you need?</li>
</ul>
</div>
</div>
</div>
</Container>
);
};
export default Roadmap;