convert modal into widget

copy still needs tweaking
This commit is contained in:
rsandb
2023-01-16 18:24:53 -06:00
parent 97a87f8c23
commit 5d3cd5a4e7
4 changed files with 55 additions and 67 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
import { Flex } from "@chakra-ui/react";
import Head from "next/head";
import { LeaderboardTable, TaskOption, WelcomeModal } from "src/components/Dashboard";
import { LeaderboardTable, TaskOption, WelcomeCard } from "src/components/Dashboard";
import { getDashboardLayout } from "src/components/Layout";
import { TaskCategory } from "src/components/Tasks/TaskTypes";
@@ -12,7 +12,7 @@ const Dashboard = () => {
<meta name="description" content="Chat with Open Assistant and provide feedback." />
</Head>
<Flex direction="column" gap="10">
<WelcomeModal />
<WelcomeCard />
<TaskOption displayTaskCategories={[TaskCategory.Tasks]} />
<LeaderboardTable />
</Flex>