NamH 00c944c0b5
Add empty model conversation (#254)
* add empty conversation model selection

Signed-off-by: James <james@jan.ai>

* chore: using secondary button instead of sidebar button

Signed-off-by: James <james@jan.ai>

---------

Signed-off-by: James <james@jan.ai>
Co-authored-by: James <james@jan.ai>
2023-10-02 19:36:10 -07:00

31 lines
886 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Image from "next/image";
import { useSetAtom } from "jotai";
import {
setMainViewStateAtom,
MainViewState,
} from "@/_helpers/atoms/MainView.atom";
import SecondaryButton from "../SecondaryButton";
const Welcome: React.FC = () => {
const setMainViewState = useSetAtom(setMainViewStateAtom);
return (
<div className="flex flex-col h-full">
<div className="px-[200px] flex-1 flex flex-col gap-5 justify-center items-start">
<Image src={"icons/Jan_AppIcon.svg"} width={44} height={45} alt="" />
<span className="font-semibold text-gray-500 text-5xl">
Welcome,
<br />
lets download your first model
</span>
<SecondaryButton
title={"Explore models"}
onClick={() => setMainViewState(MainViewState.ExploreModel)}
/>
</div>
</div>
);
};
export default Welcome;