mirror of
https://github.com/wassname/Open-Assistant.git
synced 2026-07-04 17:20:19 +08:00
21 lines
528 B
TypeScript
21 lines
528 B
TypeScript
import Head from "next/head";
|
|
import { LeaderboardTable, TaskOption } from "src/components/Dashboard";
|
|
import { getDashboardLayout } from "src/components/Layout";
|
|
|
|
const Dashboard = () => {
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>Dashboard - Open Assistant</title>
|
|
<meta name="description" content="Chat with Open Assistant and provide feedback." />
|
|
</Head>
|
|
<TaskOption />
|
|
<LeaderboardTable />
|
|
</>
|
|
);
|
|
};
|
|
|
|
Dashboard.getLayout = (page) => getDashboardLayout(page);
|
|
|
|
export default Dashboard;
|