2023-10-20 11:29:10 +07:00

31 lines
878 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 h-full flex-col">
<div className="flex flex-1 flex-col items-start justify-center gap-5 px-[200px]">
<Image src={'icons/Jan_AppIcon.svg'} width={44} height={45} alt="" />
<span className="text-5xl font-semibold text-gray-500">
Welcome,
<br />
lets download your first model
</span>
<SecondaryButton
title={'Explore models'}
onClick={() => setMainViewState(MainViewState.ExploreModel)}
/>
</div>
</div>
)
}
export default Welcome