diff --git a/website/src/components/Roadmap.tsx b/website/src/components/Roadmap.tsx
new file mode 100644
index 00000000..283a4c8f
--- /dev/null
+++ b/website/src/components/Roadmap.tsx
@@ -0,0 +1,78 @@
+import { Container } from "./Container";
+
+const Roadmap = () => {
+ return (
+
+
+
Our Roadmap
+
+
+
+
Minimum Viable Prototype
+
+ - Data Collection Pipeline
+ - RL on Human Feedback
+ - Assistant v1 usable
+ - Out January 2023!
+
+
+
+
+
+
+
+
+
Growing Up
+
+ - Retrieval Augmentation
+ - Rapid Personalization
+ - Using External Tools
+
+
+
+
+
+
+
+
+
Growing Up
+
+ - Third-Party Extentions
+ - Device Control
+ - Multi-Modality
+
+
+
+
+
+
+
+
+
+
+ );
+};
+
+export default Roadmap;
diff --git a/website/src/components/Services.tsx b/website/src/components/Services.tsx
new file mode 100644
index 00000000..ae20a6d7
--- /dev/null
+++ b/website/src/components/Services.tsx
@@ -0,0 +1,50 @@
+import { Container } from "./Container";
+
+const Services = () => {
+ return (
+
+
+
+
+
+
Your Conversational Assistant
+
+
State-of-the-Art chat assistant that can be personalized to your needs
+
+
+
Interface w/ external systems
+
+
+ Usage of APIs and third-party applications, described via language & demonstrations.
+
+
+
+
+
+
Retrieval via Search Engines
+
+
External, upgradeable knowledge: No need for billions of parameters.
+
+
+
A building block for developers
+
+
Integrate OpenAssistant into your application.
+
+
+
+
OpenAssistant unifies all knowledge work in one place
+
+
+ - Uses modern deep learning
+ - Runs on consumer hardware
+ - Trains on human feedback
+ - Free and open
+
+
+
+
+
+ );
+};
+
+export default Services;
diff --git a/website/src/components/Vision.tsx b/website/src/components/Vision.tsx
new file mode 100644
index 00000000..f6dad567
--- /dev/null
+++ b/website/src/components/Vision.tsx
@@ -0,0 +1,25 @@
+import { Container } from "./Container";
+import Image from "next/image";
+
+const Vision = () => {
+ return (
+
+
+
+
+
Our Vision
+
+ We want OpenAssistant to be the single, unifying platform that all other systems use to interface with
+ humans.
+
+
+
+
+
+
+
+
+ );
+};
+
+export default Vision;
diff --git a/website/src/pages/about.tsx b/website/src/pages/about.tsx
index 1331ad24..4a905164 100644
--- a/website/src/pages/about.tsx
+++ b/website/src/pages/about.tsx
@@ -1,4 +1,7 @@
import { Container } from "@/components/Container";
+import Services from "@/components/Services";
+import Vision from "@/components/Vision";
+import Roadmap from "@/components/Roadmap";
import { CallToAction } from "@/components/CallToAction";
import Image from "next/image";
@@ -25,139 +28,9 @@ const AboutPage = () => {
-
-
-
-
-
-
Your Conversational Assistant
-
-
State-of-the-Art chat assistant that can be personalized to your needs
-
-
-
Interface w/ external systems
-
-
- Usage of APIs and third-party applications, described via language & demonstrations.
-
-
-
-
-
-
Retrieval via Search Engines
-
-
External, upgradeable knowledge: No need for billions of parameters.
-
-
-
A building block for developers
-
-
Integrate OpenAssistant into your application.
-
-
-
-
- OpenAssistant unifies all knowledge work in one place
-
-
-
- - Uses modern deep learning
- - Runs on consumer hardware
- - Trains on human feedback
- - Free and open
-
-
-
-
-
-
-
-
-
-
-
Our Vision
-
- We want OpenAssistant to be the single, unifying platform that all other systems use to interface with
- humans.
-
-
-
-
-
-
-
-
-
-
-
-
Our Roadmap
-
-
-
-
Minimum Viable Prototype
-
- - Data Collection Pipeline
- - RL on Human Feedback
- - Assistant v1 usable
- - Out January 2023!
-
-
-
-
-
-
-
-
-
Growing Up
-
- - Retrieval Augmentation
- - Rapid Personalization
- - Using External Tools
-
-
-
-
-
-
-
-
-
Growing Up
-
- - Third-Party Extentions
- - Device Control
- - Multi-Modality
-
-
-
-
-
-
-
-
-
-
-
+
+
+
);