Files
Open-Assistant/website/src/App.js
T
2022-12-13 12:38:59 +01:00

44 lines
1.3 KiB
JavaScript

import logo from "./logo.svg";
import "./App.css";
function App() {
return (
<div className="App">
<header className="App-header">
{/* <img src={logo} className="App-logo" alt="logo" /> */}
<h2>Open Chat Gpt</h2>
<p>
Open chat gpt is a project meant to give everyone access to a great
chat based large language model.
</p>
<p>
We believe that by doing this we will create a revolution in
innovation in language. In the same way that stable-diffusion helped
the world make art and images in new ways we hope open chat gpt can
help improve the world by improving language itself.
</p>
<h2>How can you help?</h2>
<p>
All open source projects begins with people like you. Open source is
the belief that if we collaborate we can together gift our knowledge
and technology to the world for the benefit of humanity.
</p>
<h2>I'm in! Now what?</h2>
<p>We live and collaborate the work in the LAION discord. Join us!</p>
<a
className="App-link"
href="https://discord.gg/RQFtmAmk"
target="_blank"
rel="noopener noreferrer"
>
Join us on Discord
</a>
</header>
</div>
);
}
export default App;