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
new file mode 100644
index 00000000..fdce53f6
--- /dev/null
+++ b/website/src/pages/about.tsx
@@ -0,0 +1,39 @@
+import { Container } from "src/components/Container";
+import Services from "src/components/Services";
+import Vision from "src/components/Vision";
+import Roadmap from "src/components/Roadmap";
+import { CallToAction } from "src/components/CallToAction";
+import Image from "next/image";
+
+const AboutPage = () => {
+ return (
+
+
+
+
+
+
+
+
+
What is OpenAssistant?
+
+ OpenAssistant is a chat-based assistant that understands tasks, can interact with third-party systems,
+ and retrieve information dynamically to do so.
+
+
+
+ It can be extended and personalized easily and is developed as free, open-source software.
+
+
+
+
+
+
+
+
+
+
+ );
+};
+
+export default AboutPage;