forked from LAION-AI/Open-Assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathVision.tsx
25 lines (23 loc) · 862 Bytes
/
Vision.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
import Image from "next/image";
import { Container } from "src/components/Container";
const Vision = () => {
return (
<div className="bg-gray-900 py-20">
<Container className="">
<div className="grid gap-16 items-center py-20 md:py-32 lg:grid-cols-2">
<div>
<h2 className="text-4xl text-white mb-6">Our Vision</h2>
<p className="text-2xl text-gray-400">
We want OpenAssistant to be the single, unifying platform that all other systems use to interface with
humans.
</p>
</div>
<div className="m-auto rounded-tl-[45px] rounded-br-[45px] overflow-hidden">
<Image src="/images/temp-avatars/av2.jpg" width={450} height={450} alt="temp-image" />
</div>
</div>
</Container>
</div>
);
};
export default Vision;