You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
1.0 KiB
21 lines
1.0 KiB
import Button from "~/components/Button" |
|
function Landing() { |
|
return ( |
|
<div className='flex flex-col items-center w-full '> |
|
<div className="flex items-center justify-center mb-6"> |
|
<img src="/images/logo.png" alt="flower" className="w-[250px] "/> |
|
|
|
</div> |
|
<div className="flex items-center justify-center"> |
|
<p className="font-4 rtl w-[500px] h-[150px] text-md text-gray-400">سلام و عرض ارادت ! |
|
|
|
این پرسشنامه شامل فرم مشخصات عمومی و ارزشیابی شخصی شما از مهارت ها و شامل 32 سوال فنی است و حدود 45 دقیقه ممکن است نیاز به زمان داشته باشد<br/>. |
|
پیشاپیش از وقتی که میگذارید صمیمانه سپاسگزاریم و آرزوی بهترین ها را برای شما داریم .<br/> |
|
بنا بر این اگر آماده یک چالش کوچک هستید </p> |
|
</div> |
|
<Button text="بیا شروع کنیم" className="px-4" primary/> |
|
</div> |
|
) |
|
} |
|
|
|
export default Landing
|
|
|