Files
flashmed-student/src/components/decks/no-deck.js
2026-08-08 18:56:53 +03:30

28 lines
1.0 KiB
JavaScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Link } from 'react-router-dom';
import Segment from '../shared/segment';
import NavLink from '../shared/buttons/nav-link';
function NoDeck() {
return (
<Segment className='leading-8'>
<p className='text-center'>داوطلب گرامی، شما هیچ بسته فلش کارت فعالی ندارید.</p>
<p className='text-center'>
لطفا برای خرید بسته فلش کارت مورد نظر خود به
<Link to='/store' className='text-blue-600'>
{' '}
فروشگاه{' '}
</Link>
مراجعه کنید.
</p>
<p className='text-center'>
<span>همچنین با مراجعه به فروشگاه میتوانید از </span>
<span className='font-medium text-pink-500'>بستههای تستی رایگان</span>
<span> مدمشاور نیز استفاده کنید.</span>
</p>
<NavLink to='/store' color='green' content='فروشگاه' className='mx-auto my-4' />
</Segment>
);
}
export default NoDeck;