mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-08-17 11:13:32 +08:00
29 lines
755 B
TypeScript
29 lines
755 B
TypeScript
import Head from "next/head";
|
|
import { CallToAction } from "src/components/CallToAction";
|
|
import { Faq } from "src/components/Faq";
|
|
import { Hero } from "src/components/Hero";
|
|
import { getTransparentHeaderLayout } from "src/components/Layout";
|
|
|
|
const Home = () => {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>Open Assistant</title>
|
|
<meta
|
|
name="description"
|
|
content="Conversational AI for everyone. An open source project to create a chat enabled GPT LLM run by LAION and contributors around the world."
|
|
/>
|
|
</Head>
|
|
<main className="oa-basic-theme">
|
|
<Hero />
|
|
<CallToAction />
|
|
<Faq />
|
|
</main>
|
|
</>
|
|
);
|
|
};
|
|
|
|
Home.getLayout = getTransparentHeaderLayout;
|
|
|
|
export default Home;
|